{"id":21561676,"url":"https://github.com/testmonitor/donedone-client","last_synced_at":"2025-04-10T12:05:55.890Z","repository":{"id":36465866,"uuid":"225837714","full_name":"testmonitor/donedone-client","owner":"testmonitor","description":"The TestMonitor DoneDone Client.","archived":false,"fork":false,"pushed_at":"2024-08-15T07:18:27.000Z","size":71,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-09-15T09:09:33.553Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/testmonitor.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-04T10:14:25.000Z","updated_at":"2024-08-15T07:18:31.000Z","dependencies_parsed_at":"2024-02-14T17:51:15.879Z","dependency_job_id":"2b2a8b0f-c0ea-4077-8fb8-1dd057428260","html_url":"https://github.com/testmonitor/donedone-client","commit_stats":{"total_commits":33,"total_committers":5,"mean_commits":6.6,"dds":0.5151515151515151,"last_synced_commit":"6e011c10ebf4fbace575c56d37f4cd9c676ddd03"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Fdonedone-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Fdonedone-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Fdonedone-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Fdonedone-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testmonitor","download_url":"https://codeload.github.com/testmonitor/donedone-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247838417,"owners_count":21004575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T09:27:35.148Z","updated_at":"2025-04-10T12:05:55.874Z","avatar_url":"https://github.com/testmonitor.png","language":"PHP","readme":"# TestMonitor DoneDone Client\n\n[![Latest Stable Version](https://poser.pugx.org/testmonitor/donedone-client/v/stable)](https://packagist.org/packages/testmonitor/donedone-client)\n[![CircleCI](https://img.shields.io/circleci/project/github/testmonitor/donedone-client.svg)](https://circleci.com/gh/testmonitor/donedone-client)\n[![StyleCI](https://styleci.io/repos/223800227/shield)](https://styleci.io/repos/225837714)\n[![codecov](https://codecov.io/gh/testmonitor/donedone-client/graph/badge.svg?token=86DQPB0421)](https://codecov.io/gh/testmonitor/donedone-client)\n[![License](https://poser.pugx.org/testmonitor/donedone-client/license)](https://packagist.org/packages/testmonitor/donedone-client)\n\nThis package provides a very basic, convenient, and unified wrapper for the [DoneDone REST api](https://www.donedone.com/api).\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Examples](#examples)\n- [Tests](#tests)\n- [Changelog](#changelog)\n- [Contributing](#contributing)\n- [Credits](#credits)\n- [License](#license)\n\n## Installation\n\nTo install the client you need to require the package using composer:\n\n\t$ composer require testmonitor/donedone-client\n\nUse composer's autoload:\n\n```php\nrequire __DIR__.'/../vendor/autoload.php';\n```\n\nYou're all set up now!\n\n## Usage\n\nYou'll have to instantiate the client using your credentials:\n\n```php\n$donedone = new \\TestMonitor\\DoneDone\\Client('email@server.com', 'API token');\n```\n\nNext, you can start interacting with DoneDone.\n\n## Examples\n\nGet a list of DoneDone accounts:\n\n```php\n$projects = $donedone-\u003eaccounts();\n```\n\nOr creating a task, for example (using account 123 and project 456):\n\n```php\n$task = $donedone-\u003ecreateTask(new \\TestMonitor\\DoneDone\\Resources\\Task([\n    'title' =\u003e 'Some task',\n    'description' =\u003e 'A better description',\n    'status' =\u003e 1,\n    'priority' =\u003e 2,\n]), 123, 456);\n```\n\n## Tests\n\nThe package contains integration tests. You can run them using PHPUnit.\n\n    $ vendor/bin/phpunit\n\n## Changelog\n\nRefer to [CHANGELOG](CHANGELOG.md) for more information.\n\n## Contributing\n\nRefer to [CONTRIBUTING](CONTRIBUTING.md) for contributing details.\n\n## Credits\n\n* **Thijs Kok** - *Lead developer* - [ThijsKok](https://github.com/thijskok)\n* **Stephan Grootveld** - *Developer* - [Stefanius](https://github.com/stefanius)\n* **Frank Keulen** - *Developer* - [FrankIsGek](https://github.com/frankisgek)\n* **Muriel Nooder** - *Developer* - [ThaNoodle](https://github.com/thanoodle)\n\n## License\n\nThe MIT License (MIT). Refer to the [License](LICENSE.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestmonitor%2Fdonedone-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestmonitor%2Fdonedone-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestmonitor%2Fdonedone-client/lists"}