z38 / dynamicdns
Dynamic DNS update client and library
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/z38/dynamicdns
Requires
- ext-curl: *
- kriswallsmith/buzz: 0.13.*
- symfony/console: ~2.6
- symfony/yaml: ~2.6
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-10-07 06:36:12 UTC
README
DynamicDns contains dynamic DNS updater utility (called ddns-updater). In addition, it allows users to write their custom Dynamic DNS updater by providing an easy-to-use API.
<?php require __DIR__.'/vendor/autoload.php'; $host = 'yourhostname.ddns.net'; $ip = '173.194.66.100'; $credentials = array( 'username' => 'foo', 'password' => 'bar' ); $provider = new Z38\DynamicDns\Provider\NoIp(); $provider->update($host, $ip, $credentials);
ddns-updater
Simply invoke ./bin/ddns-updater
to get a list of the commands available.
License
MIT