tituskirch/nitrapi-php-lib

This package is abandoned and no longer maintained. No replacement package was suggested.

Titus version of the PHP SDK for the Nitrapi RESTful API.

Maintainers

👁 TitusKirch

Package info

github.com/TitusKirch/nitrapi-php-lib

pkg:composer/tituskirch/nitrapi-php-lib

Statistics

Installs: 13

Dependents: 0

Suggesters: 0

Stars: 0

4.2.0 2022-03-22 12:44 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 90991e0e4e1f5f4f3edf175cba1b11bff49891e0

apinitradonitrapimarbis

This package is auto-updated.

Last update: 2026-05-21 00:17:25 UTC


README

👁 Latest Stable Version
👁 Latest Unstable Version
👁 Total Downloads
👁 PHP Composer

Titus version of the PHP SDK for the Nitrapi RESTful API.

Recommends

  • PHP 7.3 or higher
  • Composer

Installation

Edit the composer.json and execute composer.phar update

{
 "require": {
"tituskirch/nitrapi-php-lib": "dev-main",
 }
}

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