-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 787 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 787 Bytes
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
{
"name": "keira/web-monitor",
"description": "High-performance web server monitoring application built with PHP 8.3 and amphp",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Keira\\": "src/Keira/"
}
},
"require": {
"php": "^8.3",
"amphp/amp": "^3.0",
"amphp/http-client": "^5.0",
"amphp/http-server": "^3.0",
"amphp/http-server-router": "^2.0",
"amphp/websocket-server": "^4.0",
"amphp/log": "^2.0",
"amphp/process": "^2.0",
"amphp/socket": "^2.0",
"revolt/event-loop": "^1.0",
"monolog/monolog": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "phpunit"
}
}