-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.04 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
{
"name": "localzet/socketio",
"description": "Localzet SocketIO is a PHP SocketIO library developed by Localzet. It provides functionality for real-time bidirectional event-based communication.",
"type": "library",
"keywords": [
"SocketIO",
"PHP",
"library",
"localzet",
"GPL",
"real-time",
"communication",
"event-based"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "creator@localzet.com",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "support@localzet.com",
"issues": "https://github.com/localzet/SocketIO/issues",
"source": "https://github.com/localzet/SocketIO"
},
"require": {
"php": ">=7.4",
"localzet/server": "^4.1",
"localzet/channel": ">=1.0.0"
},
"autoload": {
"psr-4": {
"localzet\\SocketIO\\": "src/"
}
}
}