danielbadura/redmine-api-client

This package is abandoned and no longer maintained. No replacement package was suggested.

A Redmine-Api Client

dev-master 2015-12-29 15:17 UTC

This package is not auto-updated.

Last update: 2020-08-22 05:59:42 UTC


README

Build Status

installation

composer require danielbadura/redmine-api-client

usage

You can initialize the client with the login of the redmine user.

// user credentials
$apiClient = new Client('redmine.com', 'admin', 'password');
// or with apikey
$apiClient = new Client('redmine.com', 'jdal5723n5j7987234jjfsd');

After this you are ready to go. Now you can get your needed repository and get the entities you want.

// to get the issue with id = 1
$apiClient->getIssueRepository()->find(1);
// get all issues
$apiClient->getIssueRepository()->findAll();

Creating new entities is really simple. Just create an object of this entity and fill the data. Then use the client to save it.

$issue = new Issue();
$issue->setSubject('New Issue');

$apiClient->getIssueRepository()->save($issue);

To update an entity just get it and modify it.

$issue = $apiClient->getIssueRepository()->find(1);
$issue->setSubject('New Issue Name');

$apiClient->getIssueRepository()->save($issue);