johnstyle / redmine-bundle
RedmineBundle
Installs: 1 084
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 1
Type:bundle
Requires
- php: ^7.0
- kbsali/redmine-api: ^1.5
This package is auto-updated.
Last update: 2024-10-11 12:11:10 UTC
README
Implement Redmine client https://github.com/kbsali/php-redmine-api to Symfony service.
Configuration
Enable the bundle in app/AppKernel.php
file:
$bundles = [
// existing bundles
new Johnstyle\RedmineBundle\JohnstyleRedmineBundle(),
]
Add the following minimal configuration in app/config/config.yml
johnstyle_redmine:
url: '%redmine.url%'
token: '%redmine.token%'
Usage
$client = $this->container->get('johnstyle.redmine_client')->client();
$client->user->listing();
View kbsali/php-redmine-api documentation for more example.