forked from clue/reactphp-connection-manager-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 767 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "clue/connection-manager-extra",
"description": "Extra decorators for creating async TCP/IP connections built upon react/socket-client",
"keywords": ["SocketClient", "network", "connection", "timeout", "delay", "reject", "repeat", "retry", "random", "acl", "firewall"],
"homepage": "https://github.com/clue/php-connection-manager-extra",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": {"ConnectionManager\\Extra\\": "src"}
},
"require": {
"php": ">=5.3",
"react/socket-client": "0.3.*|0.4.*",
"react/event-loop": "0.3.*|0.4.*",
"react/promise": "~1.0|~2.0"
}
}