-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 888 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
{
"name": "nzldev/ratchet"
, "type": "library"
, "description": "Laravel WebSocket library"
, "keywords": ["WebSockets", "Server", "Ratchet", "Sockets", "WebSocket"]
, "homepage": "http://socketo.me"
, "license": "MIT"
, "authors": [
{
"name": "Nazrul Islam Nadeem"
, "email": "nzl.nadeem@icloud.com"
, "role": "Developer"
}
, {
"name": "Devsmine Team"
, "role": "Founder"
}
]
, "autoload": {
"psr-4": {
"Ratchet\\": "src/Ratchet"
}
}
, "require": {
"php": "^7.3|^8.0"
, "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5"
, "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0"
, "symfony/routing": "^2.6|^3.0|^4.0|^5.0",
"ratchet/rfc6455": "^0.3.0"
}
, "require-dev": {
"phpunit/phpunit": "^9.3.3"
}
}