Thanks to contribute in this project. Changes and contributions must be added as pull request
You can help to make this project better by adding a new dictionary of swear words in your native language. The dictionary file MUST follow this points:
- It must be a
.php
file insrc/dict
- Its filename must be a valid language code, check here
- It must return an array with your swear words
- You MUST use array brackets declaration instead of
array()
function. - Each word must be in a single line
- Each word must be single quoted
- Each word MUST NOT contains accents
<?php
return [
'fuck',
'suck'
];
You should provide test of loading and using your dictionary.
Also, you can contribute by adding new words in a existing dictionary. You MUST to follow from 5 to 7 in the points above.
Any other improvements are very welcome. Check for issues. Remember to provide test for your changes.