-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
147 lines (147 loc) · 5.27 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "mammatus/http-server",
"description": "\ud83d\udc19 Multi vhost HTTP Server",
"license": "MIT",
"type": "composer-plugin",
"require": {
"php": "^8.1",
"composer-plugin-api": "^2",
"ancarda/psr7-string-stream": "^1.3",
"chimera/foundation": "^0.4.0",
"chimera/mapping": "^0.4.0",
"chimera/routing": "^0.4.0",
"chimera/routing-mezzio": "^0.4.0",
"composer/composer": "^2.4",
"doctrine/annotations": "^1.13",
"for/http-middleware-psr15-adapter": "^2",
"illuminate/collections": "^9.25.1",
"laminas/laminas-diactoros": "^2.14",
"laminas/laminas-stratigility": "^3.9",
"lcobucci/content-negotiation-middleware": "^3.1",
"league/tactician": "^1.1",
"league/tactician-container": "^3 || ^2",
"mammatus/app": "dev-master",
"mammatus/healthz-vhost": "dev-master",
"mammatus/http-server-annotations": "dev-master",
"mammatus/http-server-contracts": "dev-master",
"mammatus/http-server-webroot": "dev-master",
"mammatus/http-server-websockets": "dev-master",
"mammatus/life-cycle-events": "^1",
"mammatus/metrics-prometheus-vhost": "dev-master",
"mezzio/mezzio-fastroute": "^3.5",
"mezzio/mezzio-helpers": "^5.6",
"mezzio/mezzio-router": "^3.6",
"middlewares/access-log": "^2",
"middlewares/cache": "^2",
"middlewares/client-ip": "^2",
"middlewares/filesystem": "^2",
"middlewares/https": "^2",
"middlewares/negotiation": "^2.1",
"middlewares/response-time": "^2",
"nikic/fast-route": "^1.2",
"nikic/php-parser": "^4.10",
"psr/container": "^3 || ^2 || ^1",
"psr/http-factory": "^3 || ^2 || ^1",
"psr/http-message": "^3 || ^2 || ^1",
"psr/http-server-middleware": "^3 || ^2 || ^1",
"psr/log": "^3 || ^2 || ^1",
"react-inspector/http-middleware": "^2.0",
"react/async": "^4",
"react/cache": "^1.1",
"react/event-loop": "^1.3",
"react/http": "^1.7",
"react/promise": "^2.9",
"react/socket": "^1.12",
"roave/better-reflection": "^6 || ^5",
"thecodingmachine/safe": "^2 || ^1",
"thruway/client": "^0.5.8",
"thruway/middleware": "^0.1.1",
"voryx/thruway": "0.6.1 as 0.5.13",
"wyrihaximus/broadcast": "^2.0.0",
"wyrihaximus/broadcast-contracts": "^1.3",
"wyrihaximus/doctrine-annotation-autoloader": "^1",
"wyrihaximus/get-in-packages-composer.jason": "^2",
"wyrihaximus/html-compress": "^4.2",
"wyrihaximus/iterator-or-array-to-array": "^1.1",
"wyrihaximus/json-psr7": "^1.3",
"wyrihaximus/list-classes-in-directory": "^1.3",
"wyrihaximus/metrics": "^2 || ^1.0",
"wyrihaximus/metrics-tactician": "^1.0",
"wyrihaximus/psr-3-callable-throwable-logger": "^2.2",
"wyrihaximus/psr-3-context-logger": "^2",
"wyrihaximus/react-http-middleware-compress-assets": "^2.0",
"wyrihaximus/react-http-middleware-custom-request-body-parsers": "^2.0",
"wyrihaximus/react-http-middleware-html-compress": "^2.0",
"wyrihaximus/react-http-middleware-resume-response-body": "^3.0",
"wyrihaximus/react-http-middleware-webroot-preload": "^2.0",
"wyrihaximus/react-stream-json": "^1.2",
"wyrihaximus/simple-twig": "^2",
"wyrihaximus/string-get-in": "^1"
},
"require-dev": {
"mammatus/test-utilities": "dev-master",
"monolog/monolog": "^2"
},
"autoload": {
"psr-4": {
"Mammatus\\Http\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mammatus\\Tests\\Http\\Server\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupol/composer-packages": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"mindplay/composer-locator": true,
"react-parallel/object-proxy": true,
"wyrihaximus/broadcast": true,
"wyrihaximus/composer-update-bin-autoload-path": true
},
"platform": {
"php": "8.1.0"
},
"sort-packages": true
},
"extra": {
"class": "Mammatus\\Http\\Server\\Composer\\Installer",
"mammatus": {
"http": {
"server": {
"has-vhosts": true
}
}
},
"php-di-definitions": {
"di": [
"etc/di/*.php"
]
},
"wyrihaximus": {
"broadcast": {
"has-listeners": true
}
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
],
"pre-autoload-dump": [
"Mammatus\\Http\\Server\\Composer\\Installer::findVhosts"
],
"generate-config": [
"Mammatus\\Http\\Server\\Composer\\Installer::findVhosts"
]
}
}