composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "symfony/form",
  3. "type": "library",
  4. "description": "Allows to easily create, process and reuse HTML forms",
  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/event-dispatcher": "^4.4|^5.0",
  22. "symfony/intl": "^4.4|^5.0",
  23. "symfony/options-resolver": "^5.1",
  24. "symfony/polyfill-ctype": "~1.8",
  25. "symfony/polyfill-mbstring": "~1.0",
  26. "symfony/polyfill-php80": "^1.15",
  27. "symfony/property-access": "^5.0.8",
  28. "symfony/service-contracts": "^1.1|^2"
  29. },
  30. "require-dev": {
  31. "doctrine/collections": "~1.0",
  32. "symfony/validator": "^4.4.17|^5.1.9",
  33. "symfony/dependency-injection": "^4.4|^5.0",
  34. "symfony/expression-language": "^4.4|^5.0",
  35. "symfony/config": "^4.4|^5.0",
  36. "symfony/console": "^4.4|^5.0",
  37. "symfony/http-foundation": "^4.4|^5.0",
  38. "symfony/http-kernel": "^4.4|^5.0",
  39. "symfony/security-csrf": "^4.4|^5.0",
  40. "symfony/translation": "^4.4|^5.0",
  41. "symfony/var-dumper": "^4.4|^5.0"
  42. },
  43. "conflict": {
  44. "phpunit/phpunit": "<5.4.3",
  45. "symfony/console": "<4.4",
  46. "symfony/dependency-injection": "<4.4",
  47. "symfony/doctrine-bridge": "<4.4",
  48. "symfony/error-handler": "<4.4.5",
  49. "symfony/framework-bundle": "<4.4",
  50. "symfony/http-kernel": "<4.4",
  51. "symfony/intl": "<4.4",
  52. "symfony/translation": "<4.4",
  53. "symfony/translation-contracts": "<1.1.7",
  54. "symfony/twig-bridge": "<4.4"
  55. },
  56. "suggest": {
  57. "symfony/validator": "For form validation.",
  58. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  59. "symfony/twig-bridge": "For templating with Twig."
  60. },
  61. "autoload": {
  62. "psr-4": { "Symfony\\Component\\Form\\": "" },
  63. "exclude-from-classmap": [
  64. "/Tests/"
  65. ]
  66. },
  67. "minimum-stability": "dev"
  68. }