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

49 lines
1.3 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.4",
"symfony/event-dispatcher": "2.1.*",
"symfony/http-foundation": "2.1.*",
"symfony/http-kernel": "2.1.*"
},
"require-dev": {
"symfony/form": "2.1.*",
"symfony/routing": "2.1.*",
"symfony/validator": "2.1.*",
"doctrine/common": ">=2.2,<2.4-dev",
"doctrine/dbal": ">=2.2,<2.4-dev"
2011-09-24 18:13:35 +01:00
},
"suggest": {
2011-11-23 16:46:50 +00:00
"symfony/class-loader": "self.version",
"symfony/finder": "self.version",
"symfony/form": "self.version",
"symfony/validator": "self.version",
"symfony/routing": "self.version",
"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",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
2011-09-24 18:13:35 +01:00
}