-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.08 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
{
"name": "inhere/websocket",
"type": "library",
"description": "a lightweight webSocket application library, server and client by sockets,streams,swoole",
"keywords": [
"library",
"webSocket",
"webSocket-application",
"sockets",
"streams",
"swoole"
],
"homepage": "http://github.com/inhere/php-webSocket",
"license": "MIT",
"authors": [
{
"name": "inhere",
"email": "[email protected]",
"homepage": "http://www.yzone.net/"
}
],
"require": {
"php": ">=7.0.0",
"guzzlehttp/promises": "^1.3",
"inhere/console": "dev-master",
"inhere/http": "dev-master",
"inhere/library": "dev-master"
},
"require-dev": {
"mylib/websocket-client": "dev-master"
},
"autoload": {
"psr-4": {
"Inhere\\WebSocket\\": "src/"
}
},
"suggest": {
"inhere/simple-print-tool": "Very lightweight data printing tools",
"inhere/php-validate": "Very lightweight data validate tool"
}
}