-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
56 lines (56 loc) · 1.06 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
{
"name": "plesk/ratchetphp",
"type": "library",
"description": "PHP WebSocket library",
"keywords": [
"WebSockets",
"Server",
"Ratchet",
"Sockets",
"WebSocket"
],
"homepage": "http://socketo.me",
"license": "MIT",
"authors": [
{
"name": "Chris Boden",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Matt Bonneau",
"role": "Developer"
},
{
"name": "Alexey Yuzhakov",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Ratchet\\": "src/Ratchet"
}
},
"require": {
"php": "^8.0",
"ratchet/rfc6455": "^0.3.1",
"react/socket": "^1.13.0",
"react/event-loop": "^1.4.0",
"guzzlehttp/psr7": "^2.5.0",
"symfony/http-foundation": "^5.4.24 || ^6.0 || ^7.0",
"symfony/routing": "^5.4.22 || ^6.0 || ^7.0"
},
"config": {
"platform": {
"php": "8.0.0"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.9",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"test": "phpunit",
"lint": "phpcs"
}
}