-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "phrity/websocket",
"type": "library",
"description": "WebSocket client and server",
"homepage": "https://phrity.sirn.se/websocket",
"keywords": ["websocket", "client", "server"],
"license": "ISC",
"authors": [
{
"name": "Fredrik Liljegren"
},
{
"name": "Sören Jensen",
"email": "[email protected]",
"homepage": "https://phrity.sirn.se"
}
],
"autoload": {
"psr-4": {
"WebSocket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebSocket\\Test\\": "tests/mock/"
}
},
"require": {
"php": "^8.1",
"phrity/net-uri": "^2.1",
"phrity/net-stream": "^2.1",
"psr/http-message": "^1.1 | ^2.0",
"psr/log": "^1.0 | ^2.0 | ^3.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0 | ^11.0",
"phrity/net-mock": "^2.1",
"phrity/util-errorhandler": "^1.1",
"squizlabs/php_codesniffer": "^3.5"
}
}