forked from GeniusesOfSymfony/WebSocketBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 3.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gos/web-socket-bundle",
"type": "symfony-bundle",
"description": "Symfony Web Socket Bundle",
"keywords": ["Web Socket Bundle", "Websocket", "WAMP", "IO", "Ratchet"],
"homepage": "https://github.com/GeniusesOfSymfony/WebSocketBundle",
"license": "MIT",
"authors": [
{
"name": "Jeremy Dare",
"email": "[email protected]"
},
{
"name": "Johann Saunier",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"cboden/ratchet": "^0.4.2",
"gos/pubsub-router-bundle": "^1.0 || ^2.0",
"gos/websocket-client": "^0.3",
"ocramius/proxy-manager": "~0.4 || ^1.0 || ^2.0",
"psr/log": "^1.1",
"react/event-loop": "^1.0",
"symfony/config": "^3.4 || ^4.4 || ^5.0",
"symfony/console": "^3.4 || ^4.4 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.4 || ^5.0",
"symfony/event-dispatcher": "^3.4 || ^4.4",
"symfony/http-foundation": "^3.4 || ^4.4 || ^5.0",
"symfony/http-kernel": "^3.4 || ^4.4 || ^5.0",
"symfony/security-core": "^3.4 || ^4.4 || ^5.0",
"symfony/serializer": "^3.4 || ^4.4 || ^5.0"
},
"require-dev": {
"doctrine/cache": "^1.8",
"doctrine/dbal": "^2.9",
"friendsofphp/php-cs-fixer": "^2.16",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/extension-installer": "^1.0.3",
"phpstan/phpstan": "^0.12.9",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpstan/phpstan-symfony": "^0.12.4",
"phpunit/phpunit": "^8.5|^9.0",
"predis/predis": "^1.1",
"symfony/cache": "^3.4 || ^4.4 || ^5.0",
"symfony/monolog-bundle": "^3.0",
"symfony/options-resolver": "^3.4 || ^4.4 || ^5.0",
"symfony/polyfill-php73": "^1.13",
"symfony/stopwatch": "^3.4 || ^4.4 || ^5.0",
"symfony/twig-bundle": "^3.4 || ^4.4 || ^5.0",
"symfony/web-profiler-bundle": "^3.4 || ^4.4 || ^5.0"
},
"conflict": {
"gos/react-amqp": "<0.3"
},
"autoload": {
"psr-4": { "Gos\\Bundle\\WebSocketBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "Gos\\Bundle\\WebSocketBundle\\Tests\\": "Tests/" }
},
"suggest": {
"ext-amqp": "* to use the amqp pusher",
"ext-pdo": "* to use PDO ping services",
"doctrine/cache": "to use doctrine/cache as a client driver",
"doctrine/dbal": "to use Doctrine ping services",
"gos/react-amqp": "to use the amqp server push handler",
"predis/predis": "to use Predis as a client driver",
"symfony/cache": "to use symfony/cache as a client driver",
"symfony/options-resolver": "to use the pushers",
"symfony/polyfill-php73": "if using PHP 7.2",
"symfony/serializer": "to use the pushers",
"symfony/stopwatch": "to use the data collectors"
},
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"minimum-stability": "dev"
}