-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
68 lines (68 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": "[email protected]",
"homepage": "http://mwop.net/"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-eventmanager": "^2.5",
"zendframework/zend-json": "^2.5",
"zendframework/zend-loader": "^2.5",
"zendframework/zend-mvc": "^2.5",
"zendframework/zend-paginator": "^2.5",
"zendframework/zend-uri": "^2.5",
"zendframework/zend-view": "^2.5",
"zendframework/zend-stdlib": "^2.5",
"zendframework/zend-hydrator": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3.1",
"zendframework/zend-console": "^2.5",
"zendframework/zend-http": "^2.5",
"zendframework/zend-navigation": "^2.5",
"zendframework/zend-servicemanager": "^2.5"
},
"suggest": {
"zfr/zfr-cors": "zfr/zfr-cors provides CORS support"
},
"autoload": {
"psr-4": {
"PhlyRestfully\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyRestfullyTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}