You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
972 B

3 years ago
  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": "^7.2 || ^8.0",
  18. "symfony/polyfill-ctype": "^1.8"
  19. },
  20. "conflict": {
  21. "phpstan/phpstan": "<0.12.20",
  22. "vimeo/psalm": "<4.6.1 || 4.6.2"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^8.5.13"
  26. },
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "1.10-dev"
  30. }
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Webmozart\\Assert\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Webmozart\\Assert\\Tests\\": "tests/",
  40. "Webmozart\\Assert\\Bin\\": "bin/src"
  41. }
  42. }
  43. }