This package gives an interface to launch custom artisan commands and watch their outputs.
- PHP >= 8.2
- Laravel Framework >= 10.0
NOTE: These instructions are for Laravel >= 10.0 and PHP >= 8.2 If you are using prior version, please see the previous version's docs.
Some options that you can override are available.
php artisan vendor:publish --provider="Novius\LaravelArtisanStreamed\ArtisanStreamedServiceProvider" --tag="config"
Run:
php artisan vendor:publish --provider="Novius\LaravelArtisanStreamed\ArtisanStreamedServiceProvider" --tag="views"
You can config database record retention in the app config file.
By default, app is configured to keep records during 30 days.
// App\Console\Kernel.php
protected function schedule(Schedule $schedule): void
{
$schedule->command('model:prune', [
'--model' => [Novius\LaravelArtisanStreamed\Models\LaunchedCommand::class],
])->daily();
}
Manually command :
php artisan model:prune --model="Novius\\LaravelArtisanStreamed\\Models\\LaunchedCommand"
Run php-cs with:
composer run-script lint
Contributions are welcome! Leave an issue on Github, or create a Pull Request.
This package is under GNU Affero General Public License v3 or (at your option) any later version.