composer.json 1.8 KB

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