forked from voryx/Thruway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (48 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
44
45
46
47
48
49
{
"name": "thruway/router",
"description": "Thruway WAMP router core",
"license": "MIT",
"keywords": [
"WebSockets",
"Server",
"Client",
"WAMP",
"WAMP2",
"Autobahn",
"Sockets"
],
"authors": [
{
"name": "Matt Bonneau", "email": "[email protected]", "role": "Developer"
},
{
"name": "David Dan", "email": "[email protected]", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"Thruway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thruway\\Tests\\": "tests/"
}
},
"bin": [
"bin/thruway"
],
"require": {
"php": ">=7.1",
"voryx/thruway-common": "^1.0.5",
"thruway/client": "^0.5.0",
"react/event-loop": "^1.0 || ^0.5 || ^0.4.3",
"react/promise": "^2.3.0",
"thruway/ratchet-transport": "^0.5.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"thruway/pawl-transport": "^0.5.0",
"thruway/raw-socket-transport": "^0.5.0"
}
}