kodeops/laravel-console-output

GraphQL utils for Laravel.

Installs: 3 512

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kodeops/laravel-console-output

1.0.1 2025-07-29 09:10 UTC

This package is auto-updated.

Last update: 2025-09-29 09:44:52 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);
    ...
}