PHPackages                             danielbadura/redmine-api-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. danielbadura/redmine-api-client

AbandonedArchivedLibrary

danielbadura/redmine-api-client
===============================

A Redmine-Api Client

340[3 issues](https://github.com/DanielBadura/Redmine-Api-Client/issues)PHP

Since Dec 29Pushed 10y ago4 watchersCompare

[ Source](https://github.com/DanielBadura/Redmine-Api-Client)[ Packagist](https://packagist.org/packages/danielbadura/redmine-api-client)[ RSS](/packages/danielbadura-redmine-api-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Redmine API Client
==================

[](#redmine-api-client)

[![Build Status](https://camo.githubusercontent.com/9e19f0edeae68ef1f195dcaa22b6942853c834b7116ca038e5307314ea38dec7/68747470733a2f2f7472617669732d63692e6f72672f44616e69656c4261647572612f5265646d696e652d4170692d436c69656e742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/DanielBadura/Redmine-Api-Client)

installation
------------

[](#installation)

```
composer require danielbadura/redmine-api-client
```

usage
-----

[](#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);
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 60.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/470138?v=4)[David Badura](/maintainers/DavidBadura)[@DavidBadura](https://github.com/DavidBadura)

---

Top Contributors

[![DanielBadura](https://avatars.githubusercontent.com/u/2017762?v=4)](https://github.com/DanielBadura "DanielBadura (60 commits)")[![MarcoGiesen](https://avatars.githubusercontent.com/u/8974211?v=4)](https://github.com/MarcoGiesen "MarcoGiesen (27 commits)")[![DavidBadura](https://avatars.githubusercontent.com/u/470138?v=4)](https://github.com/DavidBadura "DavidBadura (12 commits)")

### Embed Badge

![Health badge](/badges/danielbadura-redmine-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/danielbadura-redmine-api-client/health.svg)](https://phpackages.com/packages/danielbadura-redmine-api-client)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
