2015-08-18 00:00:26 +00:00
|
|
|
{
|
|
|
|
"name": "symfony/routing",
|
|
|
|
"type": "library",
|
|
|
|
"description": "Symfony Routing Component",
|
|
|
|
"keywords": ["routing", "router", "URL", "URI"],
|
|
|
|
"homepage": "https://symfony.com",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Fabien Potencier",
|
|
|
|
"email": "fabien@symfony.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Symfony Community",
|
|
|
|
"homepage": "https://symfony.com/contributors"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"php": ">=5.3.9"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2016-04-20 16:56:34 +00:00
|
|
|
"symfony/config": "~2.7|~3.0.0",
|
|
|
|
"symfony/http-foundation": "~2.3|~3.0.0",
|
|
|
|
"symfony/yaml": "~2.0,>=2.0.5|~3.0.0",
|
|
|
|
"symfony/expression-language": "~2.4|~3.0.0",
|
2015-08-18 00:00:26 +00:00
|
|
|
"doctrine/annotations": "~1.0",
|
|
|
|
"doctrine/common": "~2.2",
|
|
|
|
"psr/log": "~1.0"
|
|
|
|
},
|
|
|
|
"conflict": {
|
|
|
|
"symfony/config": "<2.7"
|
|
|
|
},
|
|
|
|
"suggest": {
|
2016-04-20 16:56:34 +00:00
|
|
|
"symfony/http-foundation": "For using a Symfony Request object",
|
2015-08-18 00:00:26 +00:00
|
|
|
"symfony/config": "For using the all-in-one router or any loader",
|
|
|
|
"symfony/yaml": "For using the YAML loader",
|
|
|
|
"symfony/expression-language": "For using expression matching",
|
2016-04-20 16:56:34 +00:00
|
|
|
"doctrine/annotations": "For using the annotation loader",
|
|
|
|
"symfony/dependency-injection": "For loading routes from a service"
|
2015-08-18 00:00:26 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
2016-04-20 16:56:34 +00:00
|
|
|
"psr-4": { "Symfony\\Component\\Routing\\": "" },
|
|
|
|
"exclude-from-classmap": [
|
|
|
|
"/Tests/"
|
|
|
|
]
|
2015-08-18 00:00:26 +00:00
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2016-04-20 16:56:34 +00:00
|
|
|
"dev-master": "2.8-dev"
|
2015-08-18 00:00:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|