-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcomposer.json
46 lines (46 loc) · 990 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
46
{
"name": "voryx/thruway-bundle",
"type": "symfony-bundle",
"description": "WebSockets (WAMP2) integration for Symfony2",
"keywords": [
"WebSockets",
"WAMP",
"WAMP2",
"Autobahn",
"Sockets",
"Symfony"
],
"license": "MIT",
"authors": [
{
"name": "David Dan",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Matt Bonneau",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Voryx\\ThruwayBundle": "src"
}
},
"require": {
"php": ">=5.6",
"symfony/finder": "^2.7|^3.0|^4.0",
"voryx/thruway": "~0.5",
"symfony/serializer": "^2.7|^3.0|^4.0",
"react/child-process": "~0.4",
"symfony/event-dispatcher": "^2.7|^3.0|^4.0",
"thruway/pawl-transport": "^0.5.1"
},
"require-dev": {
"symfony/symfony": "^2.7|^3.0|^4.0",
"doctrine/orm": "~2.1",
"symfony/yaml": "2.*",
"phpunit/phpunit": "~5.0"
}
}