-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.76 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
{
"name": "mammatus/healthz-vhost",
"description": "⚕️ Basic health check vhost",
"license": "MIT",
"require": {
"php": "^8.1",
"chimera/foundation": "^0.4.0",
"chimera/mapping": "^0.4.0",
"mammatus/http-server-annotations": "dev-master",
"mammatus/http-server-contracts": "dev-master",
"mammatus/http-server-webroot": "dev-master",
"mammatus/http-server-websockets": "dev-master",
"psr/http-message": "^1.0",
"psr/log": "^3 || ^2 || ^1.1",
"react/event-loop": "^1.1",
"react/http": "^1.1",
"thecodingmachine/safe": "^2 || ^1.2",
"wyrihaximus/constants": "^1.5"
},
"require-dev": {
"mammatus/test-utilities": "dev-master",
"wyrihaximus/ticking-promise": "^3"
},
"autoload": {
"psr-4": {
"Mammatus\\Vhost\\Healthz\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mammatus\\Tests\\Vhost\\Healthz\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"extra": {
"mammatus": {
"http": {
"server": {
"has-vhosts": true
}
}
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}