narno / gandi-api
为Gandi API提供的简单PHP库。
1.2.0
2016-08-21 23:14 UTC
Requires
- php: ^5.4|^7.0
- zendframework/zend-xmlrpc: ^2.6
Replaces
- narno/zendservice-gandi: 1.2.0
This package is auto-updated.
Last update: 2024-09-06 07:58:30 UTC
README
这是一个简单的PHP库,用于Gandi API。
依赖项
- PHP 5.4+
- zend-xmlrpc
- Gandi API密钥
安装
建议使用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许可协议下免费软件。