-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
29 lines (29 loc) · 944 Bytes
/
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
{
"name": "clue/socks-server",
"description": "Async SOCKS proxy server (SOCKS4, SOCKS4a and SOCKS5), built on top of React PHP",
"keywords": ["socks client", "socks server", "tcp tunnel", "socks protocol", "async", "ReactPHP"],
"homepage": "https://github.com/clue/php-socks-server",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Clue\\React\\Socks\\Server\\": "src/"}
},
"require": {
"php": ">=5.3",
"react/event-loop": "0.3.*|0.4.*",
"react/socket": "^0.7",
"react/stream": "^0.6 || ^0.5 || ^0.4.2",
"react/promise": "^2.1 || ^1.2",
"evenement/evenement": "~1.0|~2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^4.8",
"clue/socks-react": "^0.7",
"clue/connection-manager-extra": "^0.7"
}
}