-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.8 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
{
"name": "hrevert/ht-settings-module",
"description": "Flexible Settings module for Zend Framework 2 applications",
"type": "library",
"keywords": [
"zf2",
"module",
"zendframework",
"settings",
"hrevert"
],
"license": "MIT",
"homepage": "https://github.com/hrevert/HtSettingsModule",
"authors": [
{
"name": "Hrevert Technologies",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-stdlib": "~2.2"
},
"require-dev": {
"league/flysystem": "0.4.*",
"phine/test": "1.0.*",
"zendframework/zend-cache": "~2.2",
"zendframework/zend-config": "~2.2",
"zendframework/zend-json": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-view": "~2.2",
"zf-commons/zfc-base": "0.1.*"
},
"suggest": {
"league/flysystem": "If you want to use xml/json storage adapters provided by this module",
"zendframework/zend-cache": "if you want to cache settings",
"zendframework/zend-config": "If you want to use xml storage adapter",
"zendframework/zend-json": "If you want to use json storage adapter",
"zendframework/zend-modulemanager": "To use it as a Zend Framework 2 module",
"zendframework/zend-mvc": "To use with Zend Framework 2 MVC",
"zendframework/zend-view": "To use some view helpers",
"zf-commons/zfc-base": "if you want to use Zend\\Db for settings persistence"
},
"autoload": {
"psr-4": {
"HtSettingsModule\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}