https://github.com/johnstyle/redmine-bundle
RedmineBundle for Symfony 3
https://github.com/johnstyle/redmine-bundle
Last synced: over 1 year ago
JSON representation
RedmineBundle for Symfony 3
- Host: GitHub
- URL: https://github.com/johnstyle/redmine-bundle
- Owner: johnstyle
- License: mit
- Created: 2018-02-14T19:56:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-26T16:01:18.000Z (almost 5 years ago)
- Last Synced: 2025-04-14T12:53:22.810Z (over 1 year ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RedmineBundle for Symfony 3
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.