Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mcmatters/redmine-api


https://github.com/mcmatters/redmine-api

Last synced: about 1 month 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');
```