composer.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "symfony/validator",
  3. "type": "library",
  4. "description": "Provides tools to validate values",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "symfony/deprecation-contracts": "^2.1",
  21. "symfony/polyfill-ctype": "~1.8",
  22. "symfony/polyfill-mbstring": "~1.0",
  23. "symfony/polyfill-php73": "~1.0",
  24. "symfony/polyfill-php80": "^1.15",
  25. "symfony/translation-contracts": "^1.1|^2"
  26. },
  27. "require-dev": {
  28. "symfony/console": "^4.4|^5.0",
  29. "symfony/finder": "^4.4|^5.0",
  30. "symfony/http-client": "^4.4|^5.0",
  31. "symfony/http-foundation": "^4.4|^5.0",
  32. "symfony/http-kernel": "^4.4|^5.0",
  33. "symfony/intl": "^4.4|^5.0",
  34. "symfony/yaml": "^4.4|^5.0",
  35. "symfony/config": "^4.4|^5.0",
  36. "symfony/dependency-injection": "^4.4|^5.0",
  37. "symfony/expression-language": "^5.1",
  38. "symfony/cache": "^4.4|^5.0",
  39. "symfony/mime": "^4.4|^5.0",
  40. "symfony/property-access": "^4.4|^5.0",
  41. "symfony/property-info": "^4.4|^5.0",
  42. "symfony/translation": "^4.4|^5.0",
  43. "doctrine/annotations": "^1.10.4",
  44. "doctrine/cache": "~1.0",
  45. "egulias/email-validator": "^2.1.10|^3"
  46. },
  47. "conflict": {
  48. "doctrine/lexer": "<1.0.2",
  49. "phpunit/phpunit": "<5.4.3",
  50. "symfony/dependency-injection": "<4.4",
  51. "symfony/expression-language": "<5.1",
  52. "symfony/http-kernel": "<4.4",
  53. "symfony/intl": "<4.4",
  54. "symfony/translation": "<4.4",
  55. "symfony/yaml": "<4.4"
  56. },
  57. "suggest": {
  58. "psr/cache-implementation": "For using the mapping cache.",
  59. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  60. "doctrine/cache": "For using the default cached annotation reader.",
  61. "symfony/http-foundation": "",
  62. "symfony/intl": "",
  63. "symfony/translation": "For translating validation errors.",
  64. "symfony/yaml": "",
  65. "symfony/config": "",
  66. "egulias/email-validator": "Strict (RFC compliant) email validation",
  67. "symfony/property-access": "For accessing properties within comparison constraints",
  68. "symfony/property-info": "To automatically add NotNull and Type constraints",
  69. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints"
  70. },
  71. "autoload": {
  72. "psr-4": { "Symfony\\Component\\Validator\\": "" },
  73. "exclude-from-classmap": [
  74. "/Tests/"
  75. ]
  76. },
  77. "minimum-stability": "dev"
  78. }