kodeops / laravel-console-output
GraphQL utils for Laravel.
1.0.2
2026-07-07 20:53 UTC
Requires
- php: ^7|^8
- laravel/framework: ^8|^9|^10|^11|^12|^13
- spatie/laravel-package-tools: ^1.6.2
This package is auto-updated.
Last update: 2026-07-07 20:56:53 UTC
README
_ _ _____ ______ _______ _____ _____ _______
|____/ | | | \ |______ | | |_____] |______
| \_ |_____| |_____/ |______ |_____| | ______|
Laravel Console Output
Installation
$ composer require kodeops/laravel-console-output
Usage
Add singleton to App\Providers\AppServiceProvider
use kodeops\LaravelConsoleOutput\ConsoleOutput;
public function register()
{
...
$this->app->bind('console', ConsoleOutput::class);
...
}