-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 960 Bytes
/
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
{
"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": ">=7.4"
},
"autoload": {
"psr-4": {
"WSSC\\": "src",
"WSSCTEST\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"WSSC\\": "src",
"WSSCTEST\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"monolog/monolog": "^1.24",
"phpstan/phpstan": "^1.4",
"phpbench/phpbench": "^1.2"
},
"suggest": {
"ext-pcntl": "Allows for forking the server process to handle more clients at once"
}
}