mattsparks / blns-php
A PHP class to easily work with the Big List of Naughty Strings.
v1.0.1
2020-05-11 01:28 UTC
Requires
- blns/blns: *
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-11-18 03:05:43 UTC
README
A PHP class to easily work with the Big List of Naughty Strings.
Installation
composer require mattsparks/blns-php
Usage
use MattSparks\BLNS\BLNS; $blns = new BLNS; foreach($blns->getList() as $string) { // Do your magic. } foreach($blns->getBase64List() as $string) { // Magic done here. }
Contribute
Contributions are very welcome!
- Follow the PSR-2 Standard
- Send a pull request.