-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
117 lines (117 loc) · 3.37 KB
/
composer.json
File metadata and controls
117 lines (117 loc) · 3.37 KB
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
{
"name": "mammatus/http-server",
"description": "\ud83d\udc19 Multi vhost HTTP Server",
"license": "MIT",
"type": "composer-plugin",
"require": {
"php": "^8.4",
"ext-json": "^8.4",
"composer-plugin-api": "^2.0.0",
"composer/composer": "^2.9.2",
"mammatus/app": "dev-master",
"mammatus/groups": "^0.1.3 || ^0.2.0",
"mammatus/healthz-vhost": "dev-master",
"mammatus/http-server-attributes": "dev-main",
"mammatus/http-server-contracts": "dev-master",
"mammatus/http-server-webroot": "dev-master",
"mammatus/kubernetes-events": "^3.0.0",
"mammatus/life-cycle-events": "^2.3.0",
"nikic/fast-route": "2.0.0-beta1",
"nikic/php-parser": "^5.7.0",
"psr/container": "^1 || ^2 || ^3",
"psr/http-factory": "^1 || ^2 || ^3",
"psr/http-message": "^1 || ^2 || ^3",
"psr/http-server-middleware": "^1 || ^2 || ^3",
"psr/log": "^3.0.2",
"react/async": "^4.3.0",
"react/cache": "^1.2.0",
"react/event-loop": "^1.6.0",
"react/http": "^1.11.0",
"react/promise": "^3.3.0",
"react/socket": "^1.17.0",
"realodix/change-case": "^4.2.1",
"roave/better-reflection": "^6.66.0",
"wyrihaximus/broadcast": "^2.5.0",
"wyrihaximus/broadcast-contracts": "^1.3.0",
"wyrihaximus/generative-composer-plugin-tooling": "^1.4.0",
"wyrihaximus/psr-3-context-logger": "^3.0.0",
"wyrihaximus/react-http-middleware-webroot-preload": "^3.0.0",
"wyrihaximus/simple-twig": "^2.2.1"
},
"require-dev": {
"colinodell/psr-testlogger": "^1.3.1",
"monolog/monolog": "^3.9.0",
"pimple/pimple": "^3.6.0",
"wyrihaximus/makefiles": "0.7.16",
"wyrihaximus/test-utilities": "^8.8.0"
},
"autoload": {
"psr-4": {
"Mammatus\\DevApp\\Http\\Server\\": "etc/dev-app/",
"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,
"mammatus/app": true,
"mammatus/groups": true,
"mindplay/composer-locator": true,
"phpstan/extension-installer": true,
"react-parallel/object-proxy": true,
"wyrihaximus/broadcast": true,
"wyrihaximus/composer-update-bin-autoload-path": true,
"wyrihaximus/makefiles": true,
"wyrihaximus/test-utilities": true
},
"platform": {
"php": "8.4.13"
},
"sort-packages": true
},
"extra": {
"class": "Mammatus\\Http\\Server\\Composer\\Installer",
"mammatus": {
"has-groups": true,
"http": {
"server": {
"has-vhosts": true
}
}
},
"php-di-definitions": {
"di": [
"etc/di/*.php"
]
},
"wyrihaximus": {
"broadcast": {
"has-listeners": true
}
}
},
"scripts": {
"post-install-cmd": [
"make on-install-or-update || true"
],
"post-update-cmd": [
"make on-install-or-update || true"
],
"pre-autoload-dump": [
"Mammatus\\Http\\Server\\Composer\\Installer::findServers"
],
"generate-config": [
"Mammatus\\Http\\Server\\Composer\\Installer::findServers"
]
}
}