nitrado/nitrapi-php-lib

PHP SDK for Nitrapi

3.1 2019-01-14 08:42 UTC

README

Latest Stable Version Latest Unstable Version Total Downloads

Official PHP based SDK for the Nitrapi RESTful API.

Recommends

  • PHP 5.5 or higher
  • Composer

Installation

Edit the composer.json and execute composer.phar update

{
    "require": {
        "nitrado/nitrapi-php-lib": "dev-master",
    }
}

Example

<?php

require_once '../vendor/autoload.php';

try {
    $api = new \Nitrapi\Nitrapi("<accesss token>");
    
    var_dump($api->getServices());
    
} catch(\Exception $e) {
    var_dump("API Error: " . $e->getMessage());
}