php-extended/php-tld-provider-mozilla

A library to get the tld list from the public suffix list and build the tld hierarchy

7.0.10 2024-05-26 02:15 UTC

This package is auto-updated.

Last update: 2024-05-26 00:15:29 UTC


README

An implementation of the php-tld-interface library.

coverage build status

Last Updated Date : 2024-05-26

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.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar php-extended/php-tld-provider-mozilla ^7

Basic Usage

You may use this library this way to build a hierarchy :


use PhpExtended\Tld\MozillaTopLevelDomainProvider;

$provider = new MozillaTopLevelDomainProvider();
$hierarchy = $provider->getHierarchy();
$hierarchy->isTld('example.com'); // returns false

License

MIT (See license file).