-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1 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
{
"name": "modera/config-bundle",
"type": "symfony-bundle",
"description": "Bundles provides tools that allow to you to dynamically store and fetch your configuration properties in a flexible way.",
"license": "MIT",
"authors": [
{
"name": "Sergei Lissovski",
"email": "[email protected]"
},
{
"name": "Sergei Vizel",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^2.0",
"symfony/framework-bundle": "^5.4|^6.0",
"modera/expander-bundle": "^5.0",
"modera/foundation-bundle": "^5.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"phake/phake": "^4.0",
"phpunit/phpunit": "^6.5"
},
"autoload": {
"psr-4": { "Modera\\ConfigBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
}
}