├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── spec └── badwords.spec.php └── src ├── Badwords.php └── badwords.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/composer.lock -------------------------------------------------------------------------------- /spec/badwords.spec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/spec/badwords.spec.php -------------------------------------------------------------------------------- /src/Badwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/src/Badwords.php -------------------------------------------------------------------------------- /src/badwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchin/badwords/HEAD/src/badwords.txt --------------------------------------------------------------------------------