This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
61 lines (61 loc) · 2.05 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
55
56
57
58
59
60
61
{
"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": "^7.1",
"symfony/framework-bundle": "^2.8 || ^3.3 || ^4.0",
"symfony-cmf/routing-auto": "^2.0",
"symfony-cmf/routing-bundle": "^2.0",
"aferrandini/urlizer": "1.0.*",
"phpdocumentor/reflection-docblock": "^3.1, !=3.2.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.2.2",
"symfony/yaml": "^2.8 || ^3.3 || ^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.3.1",
"matthiasnoback/symfony-config-test": "^3.1.1",
"symfony-cmf/testing": "^2.1.11",
"doctrine/phpcr-odm": "^1.4.2 || ^2.0"
},
"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)",
"symfony-cmf/routing-auto-orm-bundle": "To enable support for Doctrine ORM entities"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"scripts": {
"test": [
"vendor/symfony-cmf/testing/bin/travis/phpcr_odm_doctrine_dbal.sh",
"SYMFONY_PHPUNIT_REMOVE=\"symfony/yaml\" vendor/bin/simple-phpunit"
]
},
"conflict": {
"phpcr/phpcr-utils": "<1.3.2",
"phpunit/phpunit": "<6",
"sebastian/exporter": "<2.0"
},
"type": "symfony-bundle"
}