This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
forked from symfony-cmf/routing-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.69 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
50
51
52
53
54
{
"name": "symfony-cmf/routing-bundle",
"type": "symfony-bundle",
"description": "Symfony RoutingBundle",
"keywords": ["routing", "database"],
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/RoutingBundle/contributors"
}
],
"require": {
"php": "^5.6|^7.0",
"symfony-cmf/routing": "^1.4|^2.0",
"symfony/framework-bundle": "^2.8|^3.0"
},
"require-dev": {
"symfony-cmf/testing": "^2.0",
"doctrine/phpcr-odm": "^1.4|^2.0",
"symfony/phpunit-bridge": "^3.2",
"matthiasnoback/symfony-dependency-injection-test": "~0.6",
"matthiasnoback/symfony-config-test": "^1.3.1",
"doctrine/orm": "^2.5",
"doctrine/data-fixtures": "^1.0.0"
},
"minimum-stability": "RC",
"prefer-stable": true,
"suggest": {
"doctrine/phpcr-odm": "To enable support for the PHPCR ODM documents (^1.4)",
"doctrine/phpcr-bundle": "To enable support for the PHPCR ODM documents",
"doctrine/orm": "To enable support for the ORM entities (^2.5)",
"symfony-cmf/content-bundle": "To optionally use the configured value for 'content_basepath' from the CoreBundle"
},
"conflict": {
"doctrine/phpcr-odm": "<1.4"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}