composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "symfony/validator",
  3. "type": "library",
  4. "description": "Symfony Validator Component",
  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": ">=5.3.9",
  20. "symfony/polyfill-ctype": "~1.8",
  21. "symfony/polyfill-mbstring": "~1.0",
  22. "symfony/translation": "~2.4|~3.0.0"
  23. },
  24. "require-dev": {
  25. "symfony/http-foundation": "~2.3|~3.0.0",
  26. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  27. "symfony/yaml": "^2.0.5|~3.0.0",
  28. "symfony/config": "~2.2|~3.0.0",
  29. "symfony/property-access": "~2.3|~3.0.0",
  30. "symfony/expression-language": "~2.4|~3.0.0",
  31. "doctrine/annotations": "~1.0",
  32. "doctrine/cache": "~1.0",
  33. "egulias/email-validator": "^1.2.1"
  34. },
  35. "suggest": {
  36. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  37. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  38. "symfony/http-foundation": "",
  39. "symfony/intl": "",
  40. "symfony/yaml": "",
  41. "symfony/config": "",
  42. "egulias/email-validator": "Strict (RFC compliant) email validation",
  43. "symfony/property-access": "For using the 2.4 Validator API",
  44. "symfony/expression-language": "For using the 2.4 Expression validator"
  45. },
  46. "autoload": {
  47. "psr-4": { "Symfony\\Component\\Validator\\": "" },
  48. "exclude-from-classmap": [
  49. "/Tests/"
  50. ]
  51. },
  52. "minimum-stability": "dev",
  53. "extra": {
  54. "branch-alias": {
  55. "dev-master": "2.8-dev"
  56. }
  57. }
  58. }