forked from symfony-cmf/routing-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (45 loc) · 1.63 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
{
"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"
}
],
"minimum-stability": "dev",
"prefer-stable": false,
"require": {
"php": ">=5.3.3",
"symfony-cmf/routing": "~1.1.0-RC3",
"symfony/framework-bundle": "~2.2"
},
"require-dev": {
"symfony-cmf/core-bundle": "~1.0.0-RC4",
"symfony-cmf/testing": "1.0.*",
"sonata-project/doctrine-phpcr-admin-bundle": "1.0.*",
"symfony/monolog-bundle": "2.2.*",
"doctrine/orm": "2.3.*"
},
"suggest": {
"doctrine/phpcr-odm": "To enable support for the PHPCR ODM documents",
"doctrine/phpcr-bundle": "To enable support for the PHPCR ODM documents",
"doctrine/orm": "To enable support for the ORM entities",
"symfony-cmf/content-bundle": "To optionally use the configured value for 'content_basepath' from the CoreBundle",
"symfony-cmf/core-bundle": "For compatibility with Symfony 2.2 and easier configuration",
"sonata-project/doctrine-phpcr-admin-bundle": "To provide an admin interface for the PHPCR ODM documents"
},
"autoload": {
"psr-0": { "Symfony\\Cmf\\Bundle\\RoutingBundle": "" }
},
"target-dir": "Symfony/Cmf/Bundle/RoutingBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}