Looking to hire Laravel developers? Try LaraJobs

laravel-artisan-streamed maintained by novius

Description
Launch and view outputs of artisan commands.
Last update
2026/05/12 13:35 (dev-master)
Links
Downloads
7 577
Tags

Comments
comments powered by Disqus

Laravel Artisan Streamed

This package gives an interface to launch custom artisan commands and watch their outputs.

Requirements

  • 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.

Configuration

Some options that you can override are available.

php artisan vendor:publish --provider="Novius\LaravelArtisanStreamed\ArtisanStreamedServiceProvider" --tag="config"

Edit default templates

Run:

php artisan vendor:publish --provider="Novius\LaravelArtisanStreamed\ArtisanStreamedServiceProvider" --tag="views"

Prune old records

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"

Lint

Run php-cs with:

composer run-script lint

Contributing

Contributions are welcome! Leave an issue on Github, or create a Pull Request.

Licence

This package is under GNU Affero General Public License v3 or (at your option) any later version.