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

53 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",
"symfony/http-foundation": "~2.4",
"symfony/http-kernel": "~2.4"
},
"require-dev": {
"symfony/form": "~2.0",
"symfony/routing": "~2.2",
"symfony/validator": "~2.2",
"doctrine/common": "~2.2",
"doctrine/dbal": "~2.2",
2013-04-25 16:40:52 +01:00
"psr/log": "~1.0",
"ircmaxell/password-compat": "1.0.*"
2011-09-24 18:13:35 +01:00
},
"suggest": {
"symfony/class-loader": "",
"symfony/finder": "",
"symfony/form": "",
"symfony/validator": "",
"symfony/routing": "",
2013-04-25 16:40:52 +01:00
"doctrine/dbal": "to use the built-in ACL implementation",
"ircmaxell/password-compat": ""
},
"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": {
2013-05-16 08:54:39 +01:00
"dev-master": "2.4-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}