This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Form/composer.json

70 lines
2.1 KiB
JSON
Raw Normal View History

2011-09-24 18:13:35 +01:00
{
"name": "symfony/form",
"type": "library",
"description": "Symfony Form Component",
"keywords": [],
"homepage": "https://symfony.com",
2011-09-24 18:13:35 +01:00
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
2011-09-24 18:13:35 +01:00
}
],
"require": {
"php": ">=7.2.5",
2019-05-28 18:17:01 +01:00
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/intl": "^4.4|^5.0",
2019-08-04 21:12:31 +01:00
"symfony/options-resolver": "^5.0",
"symfony/polyfill-ctype": "~1.8",
2015-10-14 15:40:43 +01:00
"symfony/polyfill-mbstring": "~1.0",
2019-08-04 21:12:31 +01:00
"symfony/property-access": "^5.0",
"symfony/service-contracts": "^1.1|^2"
},
"require-dev": {
"doctrine/collections": "~1.0",
2019-05-28 18:17:01 +01:00
"symfony/validator": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
2019-05-28 18:17:01 +01:00
"symfony/config": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/security-csrf": "^4.4|^5.0",
"symfony/translation": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0"
2011-09-24 18:13:35 +01:00
},
2015-04-03 08:19:20 +01:00
"conflict": {
2019-05-29 08:31:53 +01:00
"phpunit/phpunit": "<5.4.3",
"symfony/console": "<4.4",
2019-05-29 09:53:30 +01:00
"symfony/dependency-injection": "<4.4",
"symfony/doctrine-bridge": "<4.4",
"symfony/framework-bundle": "<4.4",
2019-05-29 08:31:53 +01:00
"symfony/http-kernel": "<4.4",
2019-05-29 09:53:30 +01:00
"symfony/intl": "<4.4",
"symfony/translation": "<4.4",
"symfony/twig-bridge": "<4.4"
2015-04-03 08:19:20 +01:00
},
2011-09-24 18:13:35 +01:00
"suggest": {
"symfony/validator": "For form validation.",
"symfony/security-csrf": "For protecting forms against CSRF attacks.",
2019-03-19 15:45:49 +00:00
"symfony/twig-bridge": "For templating with Twig."
},
"autoload": {
"psr-4": { "Symfony\\Component\\Form\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
2012-02-25 02:26:20 +00:00
"extra": {
"branch-alias": {
2019-05-28 13:18:42 +01:00
"dev-master": "5.0-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}