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

55 lines
1.6 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": "http://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
}
],
"require": {
2015-01-08 21:38:30 +00:00
"php": ">=5.3.9",
2014-12-27 11:38:42 +00:00
"symfony/event-dispatcher": "~2.1|~3.0.0",
"symfony/intl": "~2.3|~3.0.0",
"symfony/options-resolver": "~2.6",
2014-12-27 11:38:42 +00:00
"symfony/property-access": "~2.3|~3.0.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0.0",
"doctrine/collections": "~1.0",
2014-12-27 11:38:42 +00:00
"symfony/validator": "~2.6|~3.0.0",
"symfony/http-foundation": "~2.2|~3.0.0",
"symfony/http-kernel": "~2.4|~3.0.0",
"symfony/security-csrf": "~2.4|~3.0.0",
"symfony/translation": "~2.0,>=2.0.5|~3.0.0"
2011-09-24 18:13:35 +01:00
},
2015-04-03 08:19:20 +01:00
"conflict": {
"symfony/doctrine-bridge": "<2.7",
"symfony/framework-bundle": "<2.7"
},
2011-09-24 18:13:35 +01:00
"suggest": {
"symfony/validator": "For form validation.",
"symfony/security-csrf": "For protecting forms against CSRF attacks.",
"symfony/twig-bridge": "For templating with Twig.",
"symfony/framework-bundle": "For templating with PHP."
},
"autoload": {
"psr-0": { "Symfony\\Component\\Form\\": "" }
},
2012-02-25 02:26:20 +00:00
"target-dir": "Symfony/Component/Form",
"minimum-stability": "dev",
2012-02-25 02:26:20 +00:00
"extra": {
"branch-alias": {
2014-11-10 18:00:54 +00:00
"dev-master": "2.7-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}