summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..9135637
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,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": "christian@lueck.tv"
+ }
+ ],
+ "autoload": {
+ "psr-4": { "Clue\\React\\SshProxy\\": "src/" },
+ "files": [ "src/Io/functions.php" ]
+ },
+ "autoload-dev": {
+ "psr-4": { "Clue\\Tests\\React\\SshProxy\\": "tests/"}
+ },
+ "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": "^9.3 || ^5.7 || ^4.8.36",
+ "react/http": "^1.0",
+ "react/mysql": "^0.5.3"
+ }
+}