A simple and useful onlinenic standalone package (with laravel support)
since there was no library written for APIv4 of onlinenic i written one. this package contains all methods described in their documentation, howevern it's poorly written and most of the endpoints are now testable in sandbox mode.
Onlinenice API v4 Documentation
The recommended way to install this library is through Composer:
$ composer require pezhvak/onlinenic-api
If you're not familiar with composer
follow the installation instructions for
Linux/Unix/Mac or
Windows, and then read the
basic usage introduction.
You don't have to do anything else, this package uses the Package Auto-Discovery feature, and should be available as soon as you install it via Composer.
Add the following Service Provider to your config/app.php providers array:
Pezhvak\OnlinenicApi\OnlinenicServiceProvider::class,
php artisan vendor:publish --provider="Pezhvak\OnlinenicApi\OnlinenicServiceProvider"
ONLINENIC_SANDBOX=TRUE
ONLINENIC_ACCOUNT=
ONLINENIC_PASSWORD=
ONLINENIC_KEY=
after installing with composer you can simply initiate a new instance of Onlinenic class:
$onlinenic = new Pezhvak\OnlinenicApi\Onlinenic($account_id, $password, $api_key, $sandbox);
// use the method you want, ex:
var_dump($onlinenic->checkDomain('universe.space'));
you can use dependency injection feature in any method of your controller or resolve it through laravel service container:
using dependency injection:
Route::get('/', function (\Pezhvak\OnlinenicApi\Onlinenic $onlinenic) {
dd($onlinenic->checkDomain('universe.space'));
});
using service container:
$onlinenic = resolve('Pezhvak\\OnlinenicApi\\Onlinenic');
dd($onlinenic->checkDomain('universe.space'));
The library uses Guzzle as its HTTP communication layer.
The MIT License (MIT). Please see License File for more information.