theskillz/okdesk-api

REST Api client for okdesk.ru

0.1.3 2018-09-12 21:43 UTC

This package is auto-updated.

Last update: 2024-11-15 13:43:52 UTC


README

Build Status Packagist

This is an php client for the OkDesk API v1.

Quick Start

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']);

Installation

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