php-extended/php-blocklist-catalog-builder

A library to construct the blocklist catalog based on multiple block lists


Keywords
php, catalog, builder, blocklist
License
MIT

Documentation

php-extended/php-blocklist-catalog-builder

A library to construct the blocklist catalog based on multiple block lists.

Last Updated Date : 2020-05-14

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-blocklist-catalog-builder": "^2",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

You may use this library the following way :


use PhpExtended\Blocklist\BlocklistCatalog;

/* @var $uri \Psr\Http\Message\UriInterface */
$catalog = new BlocklistCatalog();
$result = $catalog->isUriAllowed($uri);
if(!$result->isBlocked())
{
	// do something when the domain is blocked
}

License

The php code of the library is under MIT (See license file).

The lists that are given in this catalog are derived from the following lists :