forked from phly/PhlyRestfully
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.36 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.36 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
45
46
47
48
49
50
{
"name": "phly/phly-restfully",
"description": "ZF2 Module providing structure for RESTful resources",
"type": "library",
"license": "BSD-2-Clause",
"keywords": [
"zf2",
"zend",
"module",
"rest"
],
"homepage": "https://github.com/weierophinney/PhlyRestfully",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "matthew@weierophinney.net",
"homepage": "http://mwop.net/"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-eventmanager": ">=2.1.0",
"zendframework/zend-json": ">=2.1.0",
"zendframework/zend-loader": ">=2.1.0",
"zendframework/zend-mvc": ">=2.1.4",
"zendframework/zend-paginator": ">=2.1.0",
"zendframework/zend-uri": ">=2.1.0",
"zendframework/zend-view": ">=2.1.0",
"zendframework/zend-stdlib": ">=2.1.0"
},
"require-dev": {
"zendframework/zend-navigation": ">=2.1.0",
"zendframework/zend-servicemanager": ">=2.1.0"
},
"autoload": {
"psr-0": {
"PhlyRestfully\\": "src/",
"PhlyRestfullyTest\\": "test/"
},
"classmap": [
"./"
]
}
}