composer.json 828 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "extra": {
  24. "branch-alias": {
  25. "dev-master": "1.3-dev"
  26. }
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Webmozart\\Assert\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Webmozart\\Assert\\Tests\\": "tests/"
  36. }
  37. }
  38. }