-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (42 loc) · 958 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
{
"name": "voryx/wamppost",
"description": "HTTP to WAMP Publishing Proxy",
"keywords": [
"WebSockets",
"PubSub",
"Publish",
"WAMP",
"WAMP2",
"HTTP",
"Proxy"
],
"license": "MIT",
"authors": [
{
"name": "Matt Bonneau", "email": "matt@bonneau.net", "role": "Developer"
},
{
"name": "David Dan", "email": "davidwdan@gmail.com", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"WampPost\\": "src/WampPost"
}
},
"autoload-dev": {
"psr-4": {
"WampPost\\Tests\\": "tests"
}
},
"require": {
"voryx/thruway": "^0.5.0",
"react/http": "^0.8.0"
},
"require-dev": {
"voryx/event-loop": "^0.2.0",
"react/http-client": "^0.5.0",
"phpunit/phpunit": "5.7",
"thruway/pawl-transport": "^0.5.0"
}
}