composer.json 791 B

123456789101112131415161718192021222324252627282930313233343536
  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",
  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.6.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Webmozart\\Assert\\": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Webmozart\\Assert\\Tests\\": "tests/"
  34. }
  35. }
  36. }