PHPackages                             manavo/donedone-api-php - 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. [API Development](/categories/api)
4. /
5. manavo/donedone-api-php

AbandonedArchivedLibrary[API Development](/categories/api)

manavo/donedone-api-php
=======================

PHP library for connecting with DoneDone

0.0.11(9y ago)319.6k2MITPHP

Since Oct 23Pushed 9y ago3 watchersCompare

[ Source](https://github.com/manavo/donedone-api-php)[ Packagist](https://packagist.org/packages/manavo/donedone-api-php)[ RSS](/packages/manavo-donedone-api-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (3)Versions (12)Used By (0)

DoneDone API
============

[](#donedone-api)

[![Build Status](https://camo.githubusercontent.com/c9ec2525928de4d307c3efb30e198c224cc51ab97c04b183f6591f59404b8c9a/68747470733a2f2f7472617669732d63692e6f72672f6d616e61766f2f646f6e65646f6e652d6170692d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/manavo/donedone-api-php)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/7cca448ebd6038051dc7893dcf79ebcaf6662911ff968f6a0410e4d790535b1e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d616e61766f2f646f6e65646f6e652d6170692d7068702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/manavo/donedone-api-php/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/277c82303ba61793d76a8b60dd7b7e278c73bd386ee0cc7bff724b92cdc32a5a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d616e61766f2f646f6e65646f6e652d6170692d7068702f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/manavo/donedone-api-php/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/3cc15e9064907fd0eaed63c509df3fb23d264eae174c09111b7ff8ef5215e695/68747470733a2f2f706f7365722e707567782e6f72672f6d616e61766f2f646f6e65646f6e652d6170692d7068702f762f737461626c652e737667)](https://packagist.org/packages/manavo/donedone-api-php)[![Total Downloads](https://camo.githubusercontent.com/c28419666f2ffc457b9ad5573245cd68f9d0615825097f68c72b60a77347e813/68747470733a2f2f706f7365722e707567782e6f72672f6d616e61766f2f646f6e65646f6e652d6170692d7068702f646f776e6c6f6164732e737667)](https://packagist.org/packages/manavo/donedone-api-php)[![License](https://camo.githubusercontent.com/fccef09b0ae0906a1b8c30a2f86bb1853b12b46c2d4bf25cc9c84a2f16496a1d/68747470733a2f2f706f7365722e707567782e6f72672f6d616e61766f2f646f6e65646f6e652d6170692d7068702f6c6963656e73652e737667)](https://packagist.org/packages/manavo/donedone-api-php)

PHP library for connecting with [DoneDone](http://www.getdonedone.com/).

You can find DoneDone's API documentation here:

Installation
------------

[](#installation)

Install via composer:

```
composer require manavo/donedone-api-php

```

Usage
-----

[](#usage)

### Get all projects

[](#get-all-projects)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');
$projects = $client->projects();
```

### Get all priority levels

[](#get-all-priority-levels)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');
$priorityLevels = $client->priorityLevels();
```

### Get all people of a project

[](#get-all-people-of-a-project)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');
$people = $client->project(1234)->people();
```

### Get all issues of a project (all, active, or closed)

[](#get-all-issues-of-a-project-all-active-or-closed)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');
$issues = $client->project(1234)->issues();
$activeIssues = $client->project(1234)->activeIssues();
$closedAndFixedIssues = $client->project(1234)->closedAndFixedIssues();
```

### Create a new issue

[](#create-a-new-issue)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');

$project = $client->project(1111);

$issue = new \Manavo\DoneDone\Issue();
$issue->setTitle('Brand new issue!');
$issue->setPriorityLevel(1);
$issue->setFixer(4321);
$issue->setTester(1234);
$issue->addAttachment('/path/to/some/file.md'); // Optional

$addedIssue = $project->addIssue($issue);
```

### Comment on an issue

[](#comment-on-an-issue)

```
$client = new Manavo\DoneDone\Client('team_name', 'username', 'password/api_token');
$issue = $client->project(29881)->issue(16);

$comment = new \Manavo\DoneDone\Comment();
$comment->setMessage('I am commenting!!!');
$comment->addAttachment('/path/to/some/file.md'); // Optional

$addedComment = $issue->addComment($comment);
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 93.8% 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.

###  Release Activity

Cadence

Every ~58 days

Recently: every ~26 days

Total

11

Last Release

3640d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/48f21eacf9899e4dd319d4074272504799bb43becc73e230a3d445edd9c524a0?d=identicon)[manavo](/maintainers/manavo)

---

Top Contributors

[![manavo](https://avatars.githubusercontent.com/u/259487?v=4)](https://github.com/manavo "manavo (75 commits)")[![k127](https://avatars.githubusercontent.com/u/372671?v=4)](https://github.com/k127 "k127 (4 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")

---

Tags

donedone

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/manavo-donedone-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/manavo-donedone-api-php/health.svg)](https://phpackages.com/packages/manavo-donedone-api-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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