4d820cc2138823b8ea6dd43cdde4cc97516f99ff
[yaffs-website] / vendor / symfony / routing / composer.json
1 {
2     "name": "symfony/routing",
3     "type": "library",
4     "description": "Symfony Routing Component",
5     "keywords": ["routing", "router", "URL", "URI"],
6     "homepage": "https://symfony.com",
7     "license": "MIT",
8     "authors": [
9         {
10             "name": "Fabien Potencier",
11             "email": "fabien@symfony.com"
12         },
13         {
14             "name": "Symfony Community",
15             "homepage": "https://symfony.com/contributors"
16         }
17     ],
18     "require": {
19         "php": "^5.5.9|>=7.0.8"
20     },
21     "require-dev": {
22         "symfony/config": "^3.3.1|~4.0",
23         "symfony/http-foundation": "~2.8|~3.0|~4.0",
24         "symfony/yaml": "~3.4|~4.0",
25         "symfony/expression-language": "~2.8|~3.0|~4.0",
26         "symfony/dependency-injection": "~3.3|~4.0",
27         "doctrine/annotations": "~1.0",
28         "doctrine/common": "~2.2",
29         "psr/log": "~1.0"
30     },
31     "conflict": {
32         "symfony/config": "<3.3.1",
33         "symfony/dependency-injection": "<3.3",
34         "symfony/yaml": "<3.4"
35     },
36     "suggest": {
37         "symfony/http-foundation": "For using a Symfony Request object",
38         "symfony/config": "For using the all-in-one router or any loader",
39         "symfony/yaml": "For using the YAML loader",
40         "symfony/expression-language": "For using expression matching",
41         "doctrine/annotations": "For using the annotation loader",
42         "symfony/dependency-injection": "For loading routes from a service"
43     },
44     "autoload": {
45         "psr-4": { "Symfony\\Component\\Routing\\": "" },
46         "exclude-from-classmap": [
47             "/Tests/"
48         ]
49     },
50     "minimum-stability": "dev",
51     "extra": {
52         "branch-alias": {
53             "dev-master": "3.4-dev"
54         }
55     }
56 }