A simple package that allows you to easily censor text.
For now, it only supports Polish "bad words" and allows basic censorship of the text, but in the future I plan to add support for other languages, as well as more methods to work with censored text.
Use composer to install PleaseDontSwear into your project:
composer require deoomen/please-dont-swear
<?php
use PleaseDontSwear\PleaseDontSwear;
// ...
$PDS = new PleaseDontSwear();
$myCensoredText = $PDS->censor($myBadText);
More examples of using methods can be found in the examples folder.
TODO