narno / zendservice-gandi
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: 2022-03-06 02:32:45 UTC
README
这是一个用于 Gandi API 的简单 PHP 库。
依赖关系
- 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 许可协议 发布的自由软件。