Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcmatters/redmine-api
https://github.com/mcmatters/redmine-api
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcmatters/redmine-api
- Owner: MCMatters
- Created: 2017-10-11T14:54:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-13T21:26:26.000Z (over 4 years ago)
- Last Synced: 2024-04-25T05:42:22.393Z (9 months ago)
- Language: PHP
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Redmine API Client
### Installation
`composer require mcmatters/redmine-api`
### Usage
```php
issue()->create([
'project_id' => 1,
'subject' => 'Foo',
'description' => 'bar',
]);$client->timeEntry()->create($issue['id'], '15min');
```