mattsparks / blns-php
A PHP class to easily work with the Big List of Naughty Strings.
Installs: 122
Dependents: 1
Suggesters: 0
Security: 0
Stars: 63
Watchers: 4
Forks: 3
Open Issues: 1
pkg:composer/mattsparks/blns-php
Requires
- blns/blns: *
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-10-18 05:22:19 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.