summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 913563761ea4fa359f551aefba8eb81ba5f32b4c (plain)
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": "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"
    }
}