-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 2.56 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
{
"name": "babdev/websocket-bundle",
"type": "symfony-bundle",
"description": "Bundle integrating the WebSocket Server library with Symfony",
"keywords": [
"symfony",
"WAMP",
"websocket",
"websocket server"
],
"license": "MIT",
"require": {
"php": "8.2.* || 8.3.* || 8.4.*",
"ext-pcntl": "*",
"babdev/websocket-server": "0.1.*",
"symfony/config": "^6.4 || ^7.1",
"symfony/console": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1"
},
"require-dev": {
"doctrine/dbal": "^3.4 || ^4.0",
"doctrine/doctrine-bundle": "^2.7",
"fig/log-test": "^1.1",
"matthiasnoback/symfony-config-test": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "1.12.8",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-symfony": "1.4.12",
"phpunit/phpunit": "9.6.21",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ratchet/rfc6455": "^0.3.1",
"react/event-loop": "^1.3",
"rector/rector": "1.2.10",
"symfony/cache": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/phpunit-bridge": "^6.4 || ^7.1"
},
"conflict": {
"doctrine/dbal": "<3.4 || >=5.0",
"doctrine/doctrine-bundle": "<2.7 || >=3.0",
"psr/cache": ">=4.0",
"psr/container": ">=3.0",
"psr/log": ">=4.0",
"ratchet/rfc6455": "<0.3.1 || >=0.4",
"react/event-loop": "<1.3 || >=2.0",
"symfony/cache": "<6.4 || >=7.0,<7.1 || >=8.0",
"symfony/http-foundation": "<6.4 || >=7.0,<7.1 || >=8.0"
},
"autoload": {
"psr-4": {
"BabDev\\WebSocketBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabDev\\WebSocketBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev"
}