narno/gandi-api

为Gandi API提供的简单PHP库。

1.2.0 2016-08-21 23:14 UTC

This package is auto-updated.

Last update: 2024-09-06 07:58:30 UTC


README

这是一个简单的PHP库,用于Gandi API

Latest Stable Version Total Downloads License

依赖项

安装

建议使用Composer进行安装。

composer require narno/gandi-api

用法

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

许可协议

MIT许可协议下免费软件。

© Arnaud Ligny