composer.json 889 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "webmozart/assert",
  3. "description": "Assertions to validate method input/output with nice error messages.",
  4. "keywords": [
  5. "assert",
  6. "check",
  7. "validate"
  8. ],
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Bernhard Schussek",
  13. "email": "bschussek@gmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^5.3.3 || ^7.0 || ^8.0",
  18. "symfony/polyfill-ctype": "^1.8"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  22. },
  23. "conflict": {
  24. "vimeo/psalm": "<3.9.1",
  25. "phpstan/phpstan": "<0.12.20"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Webmozart\\Assert\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Webmozart\\Assert\\Tests\\": "tests/",
  35. "Webmozart\\Assert\\Bin\\": "bin/src"
  36. }
  37. }
  38. }