josh / laravel-terminal
Terminal shell command in laravel
Installs: 4 827
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 2
Forks: 2
Open Issues: 3
Requires
- php: ^7.2
- laravel/framework: ^6
Requires (Dev)
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2022-03-14 21:18:47 UTC
README
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.