-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
95 lines (95 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "mezzio/mezzio-hal",
"description": "Hypertext Application Language implementation for PHP and PSR-7",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"mezzio",
"hal",
"http",
"psr",
"psr-7",
"psr-11",
"psr-13",
"psr-17",
"rest"
],
"homepage": "https://mezzio.dev",
"support": {
"docs": "https://docs.mezzio.dev/mezzio-hal/",
"issues": "https://github.com/mezzio/mezzio-hal/issues",
"source": "https://github.com/mezzio/mezzio-hal",
"rss": "https://github.com/mezzio/mezzio-hal/releases.atom",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"config-provider": "Mezzio\\Hal\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-json": "*",
"psr/container": "^1.1.2 || ^2.0.2",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0.1 || ^2.0.0",
"psr/link": "^1.0",
"webmozart/assert": "^1.10",
"willdurand/negotiation": "^3.0"
},
"require-dev": {
"doctrine/orm": "^2.19.8",
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-hydrator": "^4.15",
"laminas/laminas-paginator": "^2.18.1",
"mezzio/mezzio-helpers": "^5.16",
"phpspec/prophecy-phpunit": "^2.2.0",
"phpunit/phpunit": "^9.6.21",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.26.1"
},
"provide": {
"psr/link-implementation": "1.0"
},
"suggest": {
"laminas/laminas-hydrator": "^4.3 in order to use the ResourceGenerator to create Resource instances from objects",
"laminas/laminas-paginator": "^2.11 in order to provide paginated collections",
"mezzio/mezzio-helpers": "^5.7 in order to use UrlHelper/ServerUrlHelper-based MezzioUrlGenerator with the LinkGenerator",
"psr/container-implementation": "^1.0 in order to use the provided PSR-11 factories"
},
"autoload": {
"psr-4": {
"Mezzio\\Hal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MezzioTest\\Hal\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"conflict": {
"zendframework/zend-expressive-hal": "*"
}
}