mprince / laravel-terminal-execution
Terminal shell command in laravel
dev-main
2021-03-15 18:44 UTC
Requires
- php: 8.0.2
- laravel/framework: ^8
Requires (Dev)
- phpunit/phpunit: 9.*
This package is auto-updated.
Last update: 2025-03-16 03:39:06 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.