https://github.com/mcmatters/redmine-api
https://github.com/mcmatters/redmine-api
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcmatters/redmine-api
- Owner: MCMatters
- Created: 2017-10-11T14:54:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-13T21:26:26.000Z (about 5 years ago)
- Last Synced: 2025-01-31T13:43:48.731Z (5 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');
```