hexpang / laravel-ssh
适用于 Laravel 的 SSH 客户端。
v0.4.1
2016-08-26 04:46 UTC
Requires
- php: >=5.3.0
- illuminate/container: ^5.1
- illuminate/support: ^5.1
Requires (Dev)
- phpunit/phpunit: ^5.1
This package is not auto-updated.
Last update: 2024-09-26 02:57:35 UTC
README
SSH 客户端 for Laravel。
v0.5 已迁移至 ssh-client
v0.4 更改了命名空间和文件目录
如果出现找不到类别的错误,请尝试
composer dump-autoload
使用 Composer 安装
composer require hexpang/laravel-ssh
打开 config/app.php 并添加到 aliases
'SSH' => hexpang\Client\SSH\SSHClient::class,
用法
use SSH;
$ssh = new SSH($host,$port,$username,$password);