roy688 / ssh
A packages to use ssh in Laravel.
1.0
2018-05-23 18:28 UTC
Requires
- php: >=7.0
- illuminate/support: ^5.5
- laravelcollective/remote: ^5.5
Requires (Dev)
- orchestra/testbench: ~3.6.0
- phpunit/phpunit: ~7.0
This package is not auto-updated.
Last update: 2025-03-02 07:43:03 UTC
README
Package description: CHANGE ME
Installation
Install via composer
composer require roy688/ssh
Register Service Provider
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php
in providers
section
Roy688\Ssh\ServiceProvider::class,
Register Facade
Register package facade in config/app.php
in aliases
section
Roy688\Ssh\Facades\Ssh::class,
Publish Configuration File
php artisan vendor:publish --provider="Roy688\Ssh\ServiceProvider" --tag="config"
Usage
CHANGE ME
Security
If you discover any security related issues, please email slaythia@gmail.com instead of using the issue tracker.
Credits
This package is bootstrapped with the help of melihovv/laravel-package-generator.