-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
69 lines (69 loc) · 2.03 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
{
"name": "weierophinney/hal",
"description": "Hypertext Application Language implementation for PHP and PSR-7",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"hal",
"http",
"psr",
"psr-7",
"psr-11",
"psr-13",
"rest"
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/link": "^1.0",
"willdurand/negotiation": "^2.3.1"
},
"require-dev": {
"phpspec/prophecy": "^1.7.0",
"phpunit/phpunit": "^6.0",
"zendframework/zend-coding-standard": "^1.0",
"zendframework/zend-diactoros": "^1.4",
"zendframework/zend-expressive-helpers": "^4.0",
"zendframework/zend-hydrator": "^2.2",
"zendframework/zend-paginator": "^2.7"
},
"provide": {
"psr/link-implementation": "1.0"
},
"suggest": {
"psr/container-implementation": "^1.0 in order to use the provided PSR-11 factories",
"zendframework/zend-expressive-helpers": "^4.0 in order to use UrlHelper/ServerUrlHelper-based ExpressiveUrlGenerator with the LinkGenerator",
"zendframework/zend-hydrator": "^2.2.2 in order to use the ResourceGenerator to create Resource instances from objects",
"zendframework/zend-paginator": "^2.7 in order to provide paginated collections"
},
"autoload": {
"psr-4": {
"Hal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HalTest\\": "test/"
}
},
"extra": {
"zf": {
"config-provider": "Hal\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}