-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
65 lines (65 loc) · 1.55 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
{
"name": "amphp/websocket-client",
"description": "Async WebSocket client for PHP based on Amp.",
"license": "MIT",
"authors": [
{
"name": "Bob Weinand",
"email": "[email protected]"
},
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
},
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/amphp/websocket-client/issues"
},
"keywords": [
"async",
"non-blocking",
"websocket",
"client",
"http",
"amp",
"amphp"
],
"require": {
"php": ">=8.1",
"amphp/amp": "^3",
"amphp/byte-stream": "^2.1",
"amphp/http": "^2.1",
"amphp/http-client": "^5",
"amphp/socket": "^2.2",
"amphp/websocket": "^2",
"league/uri": "^6.8|^7.1",
"psr/http-message": "^1|^2",
"revolt/event-loop": "^1"
},
"require-dev": {
"amphp/http-server": "^3",
"amphp/websocket-server": "^3|^4",
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "^2",
"phpunit/phpunit": "^9",
"psr/log": "^1",
"psalm/phar": "~5.26.1"
},
"autoload": {
"psr-4": {
"Amp\\Websocket\\Client\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Websocket\\Client\\": "test"
}
}
}