-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1.12 KB
/
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
30
31
32
33
34
35
{
"name": "clue/reactphp-ssh-proxy",
"description": "Async SSH proxy connector and forwarder, tunnel any TCP/IP-based protocol through an SSH server, built on top of ReactPHP",
"keywords": ["SSH proxy", "SSH tunnel", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-ssh-proxy",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"clue/socks-react": "^1.4",
"react/child-process": "^0.6",
"react/event-loop": "^1.2",
"react/promise": "^3 || ^2.1 || ^1.2.1",
"react/socket": "^1.12.0",
"react/stream": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36",
"react/async": "^4 || ^3 || ^2",
"react/http": "^1.5",
"react/mysql": "^0.5.5"
},
"autoload": {
"psr-4": { "Clue\\React\\SshProxy\\": "src/" },
"files": [ "src/Io/functions.php" ]
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\SshProxy\\": "tests/"}
}
}