Skip to content

Commit f8d7799

Browse files
committed
splite client to mylib/websocket-client
1 parent a490423 commit f8d7799

File tree

8 files changed

+38
-1873
lines changed

8 files changed

+38
-1873
lines changed

composer.json

Lines changed: 38 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,41 @@
11
{
2-
"name": "inhere/websocket",
3-
"type": "library",
4-
"description": "a lightweight webSocket application library, server and client by sockets,streams,swoole",
5-
"keywords": ["library","webSocket","webSocket-application", "sockets", "streams", "swoole"],
6-
"homepage": "http://github.com/inhere/php-webSocket",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "inhere",
11-
"email": "[email protected]",
12-
"homepage": "http://www.yzone.net/"
2+
"name": "inhere/websocket",
3+
"type": "library",
4+
"description": "a lightweight webSocket application library, server and client by sockets,streams,swoole",
5+
"keywords": [
6+
"library",
7+
"webSocket",
8+
"webSocket-application",
9+
"sockets",
10+
"streams",
11+
"swoole"
12+
],
13+
"homepage": "http://github.com/inhere/php-webSocket",
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "inhere",
18+
"email": "[email protected]",
19+
"homepage": "http://www.yzone.net/"
20+
}
21+
],
22+
"require": {
23+
"php": ">=7.0.0",
24+
"guzzlehttp/promises": "^1.3",
25+
"inhere/console": "dev-master",
26+
"inhere/http": "dev-master",
27+
"inhere/library": "dev-master"
28+
},
29+
"require-dev": {
30+
"mylib/websocket-client": "dev-master"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"Inhere\\WebSocket\\": "src/"
35+
}
36+
},
37+
"suggest": {
38+
"inhere/simple-print-tool": "Very lightweight data printing tools",
39+
"inhere/php-validate": "Very lightweight data validate tool"
1340
}
14-
],
15-
"require": {
16-
"php": ">=7.0.0",
17-
"guzzlehttp/promises": "^1.3",
18-
"inhere/console": "dev-master",
19-
"inhere/http": "dev-master",
20-
"inhere/library": "dev-master"
21-
},
22-
"autoload": {
23-
"psr-4": {
24-
"Inhere\\WebSocket\\" : "src/"
25-
}
26-
},
27-
"suggest": {
28-
"inhere/simple-print-tool": "Very lightweight data printing tools",
29-
"inhere/php-validate": "Very lightweight data validate tool"
30-
}
3141
}

0 commit comments

Comments
 (0)