-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (44 loc) · 1.04 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
{
"name": "thruway/websocket-transport",
"type": "library",
"description": "WebSocket Transport for Thruway",
"keywords": [
"WebSockets",
"Server",
"Client",
"WAMP",
"WAMP2",
"Autobahn",
"Sockets"
],
"license": "MIT",
"authors": [
{
"name": "Matt Bonneau", "email": "[email protected]", "role": "Developer"
},
{
"name": "David Dan", "email": "[email protected]", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"Thruway\\Transport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thruway\\Test\\": "test/"
}
},
"require": {
"voryx/thruway": "^0.5",
"ratchet/rfc6455": "permessage-deflate-dev as 0.2.3",
"react/socket": "^1.0 || ^0.8.3"
},
"require-dev": {
"phpunit/phpunit": "^5.5.4",
"ratchet/pawl": "^0.3.1",
"thruway/pawl-transport": "^0.5.0",
"thruway/client": "^0.5.2"
}
}