PHP code example of testmonitor / donedone-client
1. Go to this page and download the library: Download testmonitor/donedone-client library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
testmonitor / donedone-client example snippets
$donedone = new \TestMonitor\DoneDone\Client('[email protected]', 'API token');
$projects = $donedone->accounts();
$task = $donedone->createTask(new \TestMonitor\DoneDone\Resources\Task([
'title' => 'Some task',
'description' => 'A better description',
'status' => 1,
'priority' => 2,
]), 123, 456);