-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.09 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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": "webdevgods/wdg-zf2",
"description": "Base set of libraries for Zend Framework 2.",
"type": "zf-module",
"license": "MIT",
"keywords": [
"library",
"libs",
"ZF2",
"Zend Framework",
"webdevgods",
"wdg",
"module"
],
"homepage": "https://github.com/webdevgods/WdgZf2",
"authors": [
{
"name": "Jessie Green",
"email": "jessie.ims@gmail.com",
"homepage": "http://jessiegreen.com/"
},
{
"name": "Dustin Moorman",
"email": "dustin.moorman@gmail.com",
"homepage": "http://dustinmoorman.com/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "~2.1"
},
"suggest": {
"webdevgods/wdg-doctrine2": "Base set of libraries for using doctrine.",
"webdevgods/wdg-base": "Base set of libraries for general php deeds."
},
"autoload": {
"psr-0": {
"WdgZf2": "src/"
},
"classmap": [
"./Module.php"
]
}
}