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 1
/
composer.json
66 lines (66 loc) · 2.02 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
62
63
64
65
66
{
"name": "symfony-cmf/routing-auto-orm-bundle",
"type": "symfony-bundle",
"description": "Provide support to Doctrine ORM",
"license": "MIT",
"authors": [
{
"name": "WAM Develop Team",
"email": "[email protected]"
},
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/routing-auto-bundle/contributors"
}
],
"require": {
"php": "^7.2",
"doctrine/orm": "^2.5.0",
"symfony-cmf/routing-auto-bundle": "2.1.x-dev",
"symfony/framework-bundle": "^3.4 || ^4.4"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4 || ^4.4",
"symfony/yaml": "^3.4 || ^4.4",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"matthiasnoback/symfony-config-test": "^2.2",
"symfony-cmf/core-bundle": "^2.1",
"knplabs/doctrine-behaviors": "1.4.*",
"phpspec/prophecy": "^1.7",
"symfony-cmf/testing": "^3.0",
"symfony/monolog-bundle": "^3.5",
"symfony/security-bundle": "^3.4 || ^4.4",
"symfony/twig-bundle": "^3.4 || ^4.4",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"symfony/translation": "^3.4 || ^4.4",
"symfony/form": "^3.4 || ^4.4",
"symfony/validator": "^3.4 || ^4.4"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoOrmBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\RoutingAutoOrmBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": [
"vendor/symfony-cmf/testing/bin/travis/doctrine_orm.sh",
"SYMFONY_PHPUNIT_REMOVE=\"symfony/yaml\" vendor/bin/simple-phpunit"
]
},
"conflict": {
"phpunit/phpunit": "<5.7",
"sebastian/exporter": "<2.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}