Skip to content

nitrado/NitrAPI-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nitrapi-PHP

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());
}