-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.02 KB
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.02 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
{
"name": "arthurkushman/php-wss",
"description": "Web-socket server/client with URI parse and multi-process support",
"keywords": [
"web-sockets",
"web socket server",
"web socket client",
"web socket",
"processes",
"routes",
"php"
],
"license": "MIT",
"homepage": "https://github.com/arthurkushman/php-wss",
"require": {
"php": ">=8.4"
},
"autoload": {
"psr-4": {
"WSSC\\": "src",
"WSSCTEST\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"WSSC\\": "src",
"WSSCTEST\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"monolog/monolog": "^2",
"phpstan/phpstan": "^2.0",
"phpbench/phpbench": "^1.2"
},
"suggest": {
"ext-pcntl": "Allows for forking the server process to handle more clients at once"
},
"config": {
"platform": {
"php": "8.5"
}
}
}