Drupal investigation

composer.json 1.8KB

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