hexpang/laravel-ssh

SSH Client For Laravel.
7,204
Install
composer require hexpang/laravel-ssh
Latest Version:v0.4.1
PHP:>=5.3.0
License:MIT
Last Updated:Mar 9, 2018
Links: GitHub  ·  Packagist
Maintainer: HexPang

SSH Client For Laravel

SSH Client for laravel.

v0.5 moved to ssh-client

Build Status
[Build Status]

v0.4 changed namespace and file directory

If got error about class not found,try

composer dump-autoload

Install With Composer

composer require hexpang/laravel-ssh

Open config/app.php add for aliases

'SSH' => hexpang\Client\SSH\SSHClient::class,

Usage

use SSH;
$ssh = new SSH($host,$port,$username,$password);

Method

Method Description Usage
Ping Check port $ssh->ping($host,$port,$timeOut)
Connect Connect to server $ssh->Connect()
Authorize Authorize $ssh->Authorize()
Disconnect Disconnect $ssh->Disconnect()
Execute Execute command and response result for an array[ Response,Error ] $ssh->Execute($command)