forked from symfony-cmf/routing-auto-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.58 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "symfony-cmf/routing-auto-bundle",
"description": "Bundle which automatically creates and manages routes for persisted objects",
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/routing-auto-bundle/contributors"
}
],
"require": {
"php": "^5.6|^7.0",
"symfony/framework-bundle": "^2.8|^3.0|^4.1",
"symfony-cmf/routing-auto": "^2.0",
"symfony-cmf/routing-bundle": "^1.2.0|^2.0",
"aferrandini/urlizer": "1.0.*"
},
"require-dev": {
"symfony-cmf/testing": "^1.3|^2.0",
"symfony/phpunit-bridge": "^3.2",
"symfony/yaml": "^2.8|^3.0",
"matthiasnoback/symfony-dependency-injection-test": "~0.6",
"matthiasnoback/symfony-config-test": "^1.3.1",
"doctrine/phpcr-odm": "^1.3|^2.0"
},
"minimum-stability": "RC",
"prefer-stable": true,
"suggest": {
"doctrine/phpcr-odm": "To enable support for the PHPCR ODM documents",
"doctrine/phpcr-bundle": "To enable support for the PHPCR ODM documents",
"symfony/yaml": "To be able to load Yaml configuration files (^2.1)"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}