composer.json 575 B

123456789101112131415161718192021222324
  1. {
  2. "name": "lustre/php-dfa-sensitive",
  3. "description": "To achieve the filtering of sensitive words, based on the determination of finite automata (DFA) algorithm.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Lustre",
  9. "email": "firelustre@163.com"
  10. }
  11. ],
  12. "minimum-stability": "stable",
  13. "require": {
  14. "php": ">=5.3"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "DfaFilter\\": "src/DfaFilter"
  19. }
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^6.4"
  23. }
  24. }