-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
53 lines (53 loc) · 1.4 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
{
"name": "zfr/zfr-rest",
"description": "Zend Framework 2 REST Module.",
"type": "library",
"license": "MIT",
"keywords": [
"zf2",
"zend framework",
"rest",
"restful",
"api"
],
"homepage": "https://github.com/zf-fr/zfr-rest",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr/"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://marco-pivetta.com/"
}
],
"minimum-stability": "beta",
"require": {
"php": ">=5.5",
"zendframework/zend-http": "~2.2",
"zendframework/zend-inputfilter": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-paginator": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-view": "~2.2",
"zendframework/zend-stdlib": "^2.7 || ^3.0"
},
"require-dev": {
"zendframework/zendframework": "~2.2",
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "1.4.*"
},
"autoload": {
"psr-4": {
"ZfrRest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrRestTest\\": "tests/"
}
}
}