-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.03 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
{
"name": "clue/psocksd",
"type": "project",
"description": "The SOCKS tunnel / proxy server daemon written in PHP",
"keywords": ["SOCKS proxy", "proxy server", "TCP tunnel", "forwarding", "server daemon", "ReactPHP"],
"homepage": "https://github.com/clue/psocksd",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"config": {
"platform": {
"php": "5.3.8"
}
},
"autoload": {
"psr-4": {"Clue\\Psocksd\\": "src"}
},
"require": {
"php": ">=5.3",
"clue/socks-react": "^0.4",
"clue/connection-manager-extra": "^0.3",
"react/event-loop": "^0.4 || ^0.3",
"react/socket": "^0.4 || ^0.3",
"react/socket-client": "^0.5 || ^0.4",
"react/dns": "^0.4 || ^0.3",
"react/stream": "^0.4 || 0.3",
"clue/arguments": "^1.0",
"clue/commander": "^1.2",
"clue/stdio-react": "^0.4"
},
"bin": ["bin/psocksd"]
}