forked from clue/reactphp-ssh-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1 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
{
"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]"
}
],
"autoload": {
"psr-4": { "Clue\\React\\SshProxy\\": "src/" },
"files": [ "src/Io/functions.php" ]
},
"require": {
"php": ">=5.3",
"clue/socks-react": "^1.0",
"react/child-process": "^0.6",
"react/event-loop": "^1.0 || ^0.5",
"react/promise": "^2.1 || ^1.2.1",
"react/socket": "^1.1",
"react/stream": "^1.0 || ^0.7.2"
},
"require-dev": {
"clue/block-react": "^1.3",
"phpunit/phpunit": "^7.4 || ^6.4 || ^5.0 || ^4.8.36",
"react/mysql": "^0.5.3"
}
}