Skip to content

UniSharp/Gandi-API

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gandi-API

Simple PHP library for the Gandi API.

Latest Stable Version Latest Unstable Version Total Downloads License

Dependencies

Installation

The recommended way is through Composer.

$ composer require narno/gandi-api

Usage

<?php
use Narno\Gandi\Api as GandiAPI;

try {
    $api = new GandiAPI();
    // set API key
    $params = ['your_api_key'];
    // fetches account informations...
    $account = $api->account->info($params);
    // and print
    print_r($account);
} catch (\Exception $e) {
    echo $e->getMessage();
}

License

Gandi-API is a free software distributed under the terms of the MIT license.

© 2017 Arnaud Ligny

About

Gandi-API provides a simple PHP library for the Gandi API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%