{"id":21561686,"url":"https://github.com/testmonitor/topdesk-client","last_synced_at":"2025-04-10T12:06:20.904Z","repository":{"id":36281497,"uuid":"223037352","full_name":"testmonitor/topdesk-client","owner":"testmonitor","description":"The TestMonitor TOPdesk Client.","archived":false,"fork":false,"pushed_at":"2024-10-07T08:00:54.000Z","size":106,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T10:56:28.750Z","etag":null,"topics":["api","client","topdesk"],"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-11-20T22:14:33.000Z","updated_at":"2024-10-07T08:00:58.000Z","dependencies_parsed_at":"2024-05-14T10:40:46.496Z","dependency_job_id":"52b2bed4-d30b-4029-999a-51f2b63361e4","html_url":"https://github.com/testmonitor/topdesk-client","commit_stats":{"total_commits":62,"total_committers":4,"mean_commits":15.5,"dds":0.532258064516129,"last_synced_commit":"fbaa12e4521539f1dfc40ebfa89e228461249cc4"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Ftopdesk-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Ftopdesk-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Ftopdesk-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testmonitor%2Ftopdesk-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testmonitor","download_url":"https://codeload.github.com/testmonitor/topdesk-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248216912,"owners_count":21066632,"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":["api","client","topdesk"],"created_at":"2024-11-24T09:27:36.613Z","updated_at":"2025-04-10T12:06:20.880Z","avatar_url":"https://github.com/testmonitor.png","language":"PHP","readme":"# TestMonitor TOPdesk Client\n\n[![Latest Stable Version](https://poser.pugx.org/testmonitor/topdesk-client/v/stable)](https://packagist.org/packages/testmonitor/topdesk-client)\n[![CircleCI](https://img.shields.io/circleci/project/github/testmonitor/topdesk-client.svg)](https://circleci.com/gh/testmonitor/topdesk-client)\n[![StyleCI](https://styleci.io/repos/223037352/shield)](https://styleci.io/repos/223037352)\n[![codecov](https://codecov.io/gh/testmonitor/topdesk-client/graph/badge.svg?token=8KKHUCJK5W)](https://codecov.io/gh/testmonitor/topdesk-client)\n[![License](https://poser.pugx.org/testmonitor/topdesk-client/license)](https://packagist.org/packages/testmonitor/topdesk-client)\n\nThis package provides a very basic, convenient, and unified wrapper for the TOPdesk REST 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/topdesk-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$topdesk = new \\TestMonitor\\TOPdesk\\Client('https://mytopdesk.topdesk.net', 'username', 'password');\n```\n\nNext, you can start interacting with TOPdesk.\n\n## Examples\n\nGet a list of incidents out of TOPdesk:\n\n```php\n$topdesk-\u003eincidents();\n```\n\nor create a new incident in TOPdesk:\n\n```php\n$incident = $topdesk-\u003ecreateIncident(new \\TestMonitor\\TOPdesk\\Resources\\Incident([\n    'callerName' =\u003e 'John Doe',\n    'callerEmail' =\u003e 'johndoe@testmonitor.com',\n    'status' =\u003e 'firstLine',\n    'number' =\u003e 'I1234',\n    'briefDescription' =\u003e 'Some Request',\n    'request' =\u003e 'Some Request Description'\n]));\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%2Ftopdesk-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestmonitor%2Ftopdesk-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestmonitor%2Ftopdesk-client/lists"}