chaplean / redmine-client-bundle
Redmine Api Client Bundle
Installs: 281
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:redmine-client-bundle
Requires
- php: >=7.0.8
- chaplean/api-client-bundle: ^1.0
- symfony/config: ^2.8 || ^3.0 || ^4.0
- symfony/console: ^2.8 || ^3.0 || ^4.0
- symfony/dependency-injection: ^2.7 || ^3.0 || ^4.0
- symfony/yaml: ^2.8 || ^3.0 || ^4.0
Requires (Dev)
- chaplean/codeship-scripts: ^1.0
- chaplean/coding-standard: ^1.1
- mockery/mockery: dev-master
- phpunit/phpunit: ^6.3
- symfony/http-kernel: ^2.8 || ^3.0 || ^4.0
- symfony/var-dumper: ^2.8 || ^3.0 || ^4.0
This package is auto-updated.
Last update: 2024-10-28 12:49:29 UTC
README
Prerequisites
This version of the bundle requires Symfony 2.8+.
Installation
1. Composer
composer require chaplean/redmine-client-bundle
2. AppKernel.php
Add
new Chaplean\Bundle\RedmineClientBundle\ChapleanRedmineClientBundle(),
Configuration
1. config.yml
imports: - { resource: '@ChapleanRedmineClientBundle/Resources/config/config.yml' }
2. paramters.yml
chaplean_redmine_client.url: 'your redmine url' chaplean_redmine_client.access_token: 'your access token'
#Available functions:
-
Projects
- getProjects()
- getProject()
- putProjects()
- deleteProjects()
-
Users
- getUsers()
- getUser()
- postUsers()
- putUsers()
- deleteUsers()
-
Issues
- getIssues()
- getIssue()
- postIssues()
- putIssues()
- deleteIssues()
-
Times
- getTimes()
- getTime()
- postTimes()
- putTimes()
- deleteTimes()