Download the PHP package mirarus/teamspeak-dns without Composer
On this page you can find all versions of the php package mirarus/teamspeak-dns. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package teamspeak-dns
teamspeak-dns
TeamSpeak Short DNS Service API
composer require mirarus/teamspeak-dns
-------------------------------------------------------
require "vendor/autoload.php";
use Mirarus\TeamSpeakDNS\Authorization;
use Mirarus\TeamSpeakDNS\Dns;
$authorization = new Authorization("--myteamspeak.com--email--", "--myteamspeak.com-password--");
$dns = new Dns($authorization);
print_r($dns->list());
stdClass Object
(
[items] => Array
(
[0] => stdClass Object
(
[id] => mirarus
[name] => mirarus
[host] => 127.0.0.1
[port] => 9987
)
)
[count] => 1
)
// [id] => mirarus >>> id >>> update|delete first element
print_r($dns->create("mirarus", '127.0.0.1', 9987)); // status => true | false
print_r($dns->update("mirarus", "mirarusx", '127.0.0.1', 9900)); // status => true | false
print_r($dns->delete("mirarus")); // status => true | false
All versions of teamspeak-dns with dependencies
PHP Build Version
Package Version
The package mirarus/teamspeak-dns contains the following files
Loading the files please wait ....