nitrado / NitrAPI-PHP

PHP based SDK for the NitrAPI
https://server.nitrado.net/
MIT License
16 stars 11 forks source link
nitrado nitrapi php-library php-sdk

Nitrapi-PHP

Latest Stable Version Latest Unstable Version Total Downloads

Official PHP based SDK for the Nitrapi RESTful API.

Recommends

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