composer.json 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "inhere/php-validate",
  3. "type": "library",
  4. "description": "generic data validate, filter library of the php",
  5. "keywords": [
  6. "php-library",
  7. "library",
  8. "validate",
  9. "form-validate",
  10. "validation"
  11. ],
  12. "homepage": "https://github.com/inhere/php-validate",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "inhere",
  17. "email": "in.798@qq.com",
  18. "homepage": "https://github.com/inhere"
  19. }
  20. ],
  21. "require": {
  22. "php": ">8.1.0",
  23. "toolkit/stdlib": "~2.0"
  24. },
  25. "require-dev": {},
  26. "autoload": {
  27. "psr-4": {
  28. "Inhere\\Validate\\": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Inhere\\ValidateTest\\": "test/"
  34. }
  35. },
  36. "scripts": {
  37. "check-cs": "./php-cs-fixer fix --dry-run --diff --diff-format=udiff",
  38. "cs-fix": "./php-cs-fixer fix",
  39. "test": "vendor/bin/phpunit"
  40. }
  41. }