Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaplean/redmine-client-bundle
https://github.com/chaplean/redmine-client-bundle
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaplean/redmine-client-bundle
- Owner: chaplean
- Created: 2019-07-05T15:41:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-05T15:42:11.000Z (over 5 years ago)
- Last Synced: 2024-12-02T12:58:39.652Z (about 2 months ago)
- Language: PHP
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started With ChapleanRedmineClientBundle
![Codeship Status for chaplean/redmine-invoice-client-bundle](https://app.codeship.com/projects/8f675b50-97b1-0135-385d-161fd251d857/status?branch=master)
# Prerequisites
This version of the bundle requires Symfony 2.8+.
# Installation
## 1. Composer
```bash
composer require chaplean/redmine-client-bundle
```## 2. AppKernel.php
Add
```php
new Chaplean\Bundle\RedmineClientBundle\ChapleanRedmineClientBundle(),
```# Configuration
## 1. config.yml
```yml
imports:
- { resource: '@ChapleanRedmineClientBundle/Resources/config/config.yml' }
```## 2. paramters.yml
```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()