forked from clue/reactphp-socks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 834 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 834 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
{
"name": "clue/socks-react",
"description": "Async SOCKS proxy client and server (SOCKS4, SOCKS4a and SOCKS5)",
"keywords": ["socks client", "socks server", "tcp tunnel", "socks protocol", "async", "react"],
"homepage": "https://github.com/clue/php-socks-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": {"Clue\\React\\Socks\\": "src"}
},
"require": {
"php": ">=5.3",
"react/event-loop": "0.3.*|0.4.*",
"react/socket-client": "0.3.*|0.4.*",
"react/socket": "0.3.*|0.4.*",
"react/dns": "0.3.*|0.4.*",
"react/stream": "0.3.*|0.4.*",
"react/promise": "~1.0|~2.0",
"evenement/evenement": "~1.0|~2.0"
}
}