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

This package is auto-updated.

Last update: 2024-04-18 01:57:40 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!

  1. Follow the PSR-2 Standard
  2. Send a pull request.