forked from voryx/Thruway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (44 loc) · 992 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
40
41
42
43
44
45
{
"name": "voryx/thruway",
"type": "library",
"description": "PHP WAMP2 library",
"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\\": "src/Thruway/"
}
},
"require": {
"php": ">=5.4",
"react/socket": "0.4.*",
"cboden/ratchet": "0.3.*",
"ratchet/pawl": "0.1.*",
"psr/log": "~1",
"guzzle/guzzle": "~3.9"
},
"suggest": {
"ext-mcrypt":"If you want to use WAMP-CRA for authentication"
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}