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/Security/composer.json

51 lines
1.4 KiB
JSON
Raw Normal View History

2011-09-24 18:13:35 +01:00
{
"name": "symfony/security",
"type": "library",
"description": "Symfony Security 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": {
"php": ">=5.3.3",
"symfony/event-dispatcher": "~2.1",
2012-09-06 19:45:30 +01:00
"symfony/http-foundation": "2.2.*",
"symfony/http-kernel": "2.2.*"
},
"require-dev": {
2012-09-06 19:45:30 +01:00
"symfony/form": "2.2.*",
"symfony/routing": ">=2.2,<2.3-dev",
"symfony/validator": ">=2.2,<2.3-dev",
"doctrine/common": ">=2.2,<2.4-dev",
"doctrine/dbal": "~2.2",
"psr/log": "~1.0"
2011-09-24 18:13:35 +01:00
},
"suggest": {
"symfony/class-loader": "2.2.*",
"symfony/finder": "2.2.*",
"symfony/form": "2.2.*",
"symfony/validator": "2.2.*",
"symfony/routing": "2.2.*",
"doctrine/dbal": "to use the built-in ACL implementation"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Security\\": "" }
},
2012-02-25 02:26:20 +00:00
"target-dir": "Symfony/Component/Security",
"minimum-stability": "dev",
2012-02-25 02:26:20 +00:00
"extra": {
"branch-alias": {
2012-09-06 19:45:30 +01:00
"dev-master": "2.2-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}