theskillz / okdesk-api

This is an php client for the OkDesk API

Home Page:https://okdesk.ru/apidoc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OkDesk PHP API v1

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

About

This is an php client for the OkDesk API

https://okdesk.ru/apidoc

License:MIT License


Languages

Language:PHP 100.0%