laravel-terminal maintained by josh
Description
Terminal shell command in laravel
Author
Last update
2020/01/14 17:37
(dev-develop)
License
Downloads
4 942
Tags
Laravel Terminal package
Run shell command easy in your laravel projects
The package is in process.
Requirement
- Laravel ^6
- PHP ^7.2
Install
Via Composer
$ composer require josh/laravel-terminal
Config
Add the following provider to providers part of config/app.php
Josh\Terminal\TerminalServiceProvider::class
and the following Facade to the aliases part
'Terminal' => Josh\Terminal\TerminalFacade::class
and then run
php artisan vendor:publish
for generating terminal config file into main config directory
Usage
You can run Terminal shell commands in laravel just like this:
$response = \Terminal::command('ls')->execute();
and you can get output of command just like this:
return $response->getBody()->getContents();
License
The MIT License (MIT). Please see License File for more information.