olssonm/loopia-api
Composer 安装命令:
composer require olssonm/loopia-api
包简介
Simple interface for the Loopia XMLRPC-API
README 文档
README
A super simple wrapper for the Loopia XML RPC-API for PHP.
Relies on lstrojny/fxmlrpc to make fast and efficient calls to the API. Requires PHP ^7.2 or PHP ^8.0.
Installation
$ composer require olssonm/loopia-api
Usage
Using the package is straight forward – just include the client, create an instance and make your calls.
All methods are listed over at the Loopia API-documentation.
Get all your domains
use Olssonm\LoopiaApi\Client; $response = (new Client('username', 'password')) ->getDomains() ->getResponse();
If needed, you may of course separate your code, like so:
use Olssonm\LoopiaApi\Client; $client = new Client('username', 'password'); $client->getDomains(); $response = $client->getResponse();
Check the zone records for a domain (with subdomain)
use Olssonm\LoopiaApi\Client; $response = (new Client('username', 'password')) ->getZoneRecords('example.com', '@') ->getResponse();
Update your DNS (name)-servers
use Olssonm\LoopiaApi\Client; $response = (new Client('username', 'password')) ->updateDNSServers('example.com', ['ns1.loopia.se', 'ns2.loopia.se']) ->getResponse();
Update your zone records
use Olssonm\LoopiaApi\Client; $response = (new Client('username', 'password')) ->updateZoneRecord('example.com', '@', [ 'type' => 'A', 'ttl' => '3600', 'priority' => 10, 'rdata' => '74.125.0.0', 'record_id' => 0 ]) ->getResponse();
Testing
Copy /tests/boot.example.php to /tests/boot.php and edit your settings. Then run:
vendor/bin/phpunit --bootstrap ./tests/boot.php ./tests/LoopiaApiTests.php
Of course the domain under testing needs to be owned by your Loopia account. Note: The last test (test_update_name_servers) actually modifies your name servers, use with caution.
License
The MIT License (MIT). Please see License File for more information.
© 2021 Marcus Olsson.
统计信息
- 总下载量: 128
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-07