-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.74 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
{
"name": "magium/configuration-manager",
"description": "Provides a generic plugable configuration management interface similar to Magento",
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "Kevin Schroeder",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Magium\\Configuration\\": "lib/",
"Magium\\Configuration\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~6",
"zendframework/zend-psr7bridge": "^0.2",
"zendframework/zend-di": "^2.6",
"guzzlehttp/psr7": "^1.4",
"zendframework/zend-view": "^2",
"zendframework/zend-http": "^2",
"zendframework/zend-form": "^2",
"zendframework/zend-i18n": "^2",
"zendframework/zend-json": "^2",
"mongodb/mongodb": "^1.2",
"zendframework/zend-db": "^2.0"
},
"require": {
"zendframework/zend-cache": "^2.0",
"psr/container": "^1",
"symfony/console": "~2.3|~3.0|^4.0",
"psr/http-message": "^1.0"
},
"suggest": {
"zendframework/zend-psr7bridge": "For use with the optional view layer",
"zendframework/zend-view": "For use with the optional view layer",
"zendframework/zend-http": "For use with the optional view layer",
"zendframework/zend-form": "For use with the optional view layer",
"zendframework/zend-i18n": "For use with the optional view layer",
"zendframework/zend-json": "For use with the optional view layer",
"mongodb/mongodb": "If you intend to use MongoDB for your configuration storage",
"zendframework/zend-db": "If you intend to use a relational DB for your configuration storage",
"symfony/yaml": "If you intend to use yaml for parsing configuration files"
},
"bin": ["bin/magium-configuration"]
}