This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
72 lines (72 loc) · 1.98 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
69
70
71
72
{
"name": "zfcampus/zf-hal",
"description": "ZF2 Module providing Hypermedia Application Language assets and rendering",
"type": "library",
"minimum-stability": "beta",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"zend",
"module",
"psr-13",
"rest",
"hal"
],
"homepage": "http://apigility.org/",
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.net/apigility",
"source": "https://github.com/zfcampus/zf-hal",
"issues": "https://github.com/zfcampus/zf-hal/issues"
},
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev",
"dev-develop": "1.7.x-dev"
},
"zf": {
"module": "ZF\\Hal"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zfcampus/zf-api-problem": "^1.2.1",
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1",
"zendframework/zend-filter": "^2.7.1",
"zendframework/zend-http": "^2.5.4",
"zendframework/zend-hydrator": "^1.1 || ^2.2.1 || ^3.0",
"zendframework/zend-mvc": "^2.7.15 || ^3.0.2",
"zendframework/zend-paginator": "^2.7",
"zendframework/zend-uri": "^2.5.2",
"zendframework/zend-view": "^2.8.1",
"zendframework/zend-stdlib": "^2.7.7 || ^3.0.1",
"psr/link": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21 || ^6.3",
"zendframework/zend-coding-standard": "~1.0.0"
},
"autoload": {
"files": [
"src/_autoload.php"
],
"psr-4": {
"ZF\\Hal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZFTest\\Hal\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}