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

51 lines
1.5 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": ">=5.3.3",
"symfony/event-dispatcher": "~2.1",
"symfony/intl": "~2.3",
2015-01-04 20:27:00 +00:00
"symfony/options-resolver": "~2.6",
"symfony/property-access": "~2.3"
},
"require-dev": {
2015-02-24 08:06:17 +00:00
"symfony/phpunit-bridge": "~2.7",
"doctrine/collections": "~1.0",
"symfony/validator": "~2.6,>=2.6.8",
"symfony/http-foundation": "~2.2",
2014-05-16 12:58:11 +01:00
"symfony/http-kernel": "~2.4",
"symfony/security-csrf": "~2.4",
"symfony/translation": "~2.0,>=2.0.5"
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-05-23 15:36:49 +01:00
"dev-master": "2.6-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}