php-extended / php-domain-object
A library that implements the php-extended/php-domain-interface library
9.0.7
2026-05-20 00:54 UTC
Requires
- php: >=8.2
- php-extended/php-domain-interface: ^9
Requires (Dev)
This package is auto-updated.
Last update: 2026-05-19 22:56:43 UTC
README
An implementation of the php-extended/php-domain-interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-domain-object ^9
Basic Usage
To use this interface, you may do the following :
$domain = new Domain('www.example.com');
$parent = $domain->getParent(); // example.com
$domain->append('xn--123abc'); // xn--123abc.www.example.com
License
MIT (See license file).