forked from craue/CraueConfigBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "craue/config-bundle",
"type": "symfony-bundle",
"description": "Database-stored settings made available via a service for your Symfony project.",
"keywords": ["config", "symfony2", "symfony3", "symfony4"],
"homepage": "https://github.com/craue/CraueConfigBundle",
"license": "MIT",
"authors": [
{
"name": "Christian Raue",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/craue/CraueConfigBundle/contributors"
}
],
"require": {
"php": "^5.3.9|~7.0",
"doctrine/doctrine-bundle": "~1.3",
"symfony/framework-bundle": "~2.7|~3.0|~4.0"
},
"require-dev": {
"doctrine/doctrine-cache-bundle": "~1.3",
"doctrine/orm": "^2.3.1",
"phpunit/phpunit": "^4.8.35|~5.7|~6.0",
"symfony/phpunit-bridge": "~3.2|~4.0",
"symfony/symfony": "~2.7|~3.0|~4.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\ConfigBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}