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: 18 days ago
JSON representation

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');
```