-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.48 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": "xiidea/easy-config",
"type": "symfony-bundle",
"description": "A Symfony Bundle for easy configuration management",
"keywords": ["config", "configuration", "settings", "settings-bundle"],
"homepage": "https://github.com/xiidea/EasyConfigBundle",
"license": "MIT",
"authors": [
{
"name": "Mamun Ahmed",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "EasyConfigBundle Community",
"homepage": "https://github.com/xiidea/EasyConfigBundle/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/xiidea/EasyConfigBundle/issues",
"source": "https://github.com/xiidea/EasyConfigBundle"
},
"autoload": {
"psr-4": {
"Xiidea\\EasyConfigBundle\\": ""
}
},
"autoload-dev": {
"psr-4": { "Xiidea\\EasyConfigBundle\\Tests\\": "Tests/" }
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"symfony/framework-bundle": ">=5.0 <=7.4.0",
"symfony/security-bundle": ">=5.0 <=7.4.0",
"symfony/security-core": ">=5.0 <=7.4.0",
"symfony/twig-bundle": ">=5.0 <=7.4.0",
"symfony/form": ">=5.0 <=7.4.0",
"symfony/http-foundation": ">=5.0 <=7.4.0",
"doctrine/orm": "^2.4|^3.0",
"doctrine/dbal": "^3.2|^4.0"
},
"require-dev": {
"symfony/test-pack": "^1.1"
}
}