podnik / wapi
WEDOS API PHP 层
dev-master
2020-03-21 18:22 UTC
Requires
- php: >=7.1
- ext-curl: *
This package is auto-updated.
Last update: 2024-09-22 07:48:17 UTC
README
WEDOS API PHP 层
项目网站: https://github.com/podnik/wapi
Packagist 仓库: https://packagist.org.cn/packages/podnik/wapi
安装
composer require podnik/wapi
示例
$wapi = new Wapi; $wapi->auth("uzivatel","heslo"); // Autentizace $response = $wapi->domain("domena.cz")->check(); // Vrátí objekt Wapi/Response echo $response->getResult(); // Vypíše "OK" nebo "Domain is already registered"