This is an php client for the OkDesk API v1.
require __DIR__ . '/vendor/autoload.php';
use \OkDesk\Api;
$api = new Api("your_okdesk_domain", "your_okdesk_token");
$issue = $api->issues->view(123);
$companiesList = $api->companies->all(['search_string' => 'ACME Ltd']);
To integrate this library into your application, use Composer. can be installed using Composer by running the following command:
php composer.phar require theskillz/okdesk-api