-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 827 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 827 Bytes
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
{
"name": "triangle/engine-ws",
"description": "WebSocket layer for Triangle Framework based on localzet Server",
"type": "library",
"keywords": [
"localzet",
"Triangle",
"Websocket"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "[email protected]",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/Triangle-org/Engine-WS"
},
"autoload": {
"psr-4": {
"Triangle\\Ws\\": "src",
"Triangle\\": "src/Support"
}
},
"require": {
"php": "^8.1",
"triangle/engine": "^8.1",
"triangle/router": "^2.0",
"triangle/middleware": "^2.0"
},
"conflict": {
"triangle/engine-http": "*"
}
}