forked from voryx/Thruway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (39 loc) · 849 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
{
"name": "voryx/thruway",
"type": "library",
"description": "PHP WAMP2 library",
"keywords": [
"WebSockets",
"Server",
"Client",
"WAMP",
"WAMP2",
"Autobahn",
"Sockets"
],
"license": "MIT",
"authors": [
{
"name": "Matt Bonneau", "email": "matt@bonneau.net", "role": "Developer"
},
{
"name": "David Dan", "email": "davidwdan@gmail.com", "role": "Developer"
}
],
"autoload": {
"psr-0": {
"Thruway": "src"
}
},
"require": {
"php": ">=5.4", "react/socket": "0.4.*",
"cboden/ratchet": "0.3.*",
"ratchet/pawl": "0.1.*",
"psr/log": "~1"
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}