This package is abandoned and no longer maintained. The author suggests using the dragon-code/verbose package instead.

Displaying verbose messages

v4.0.0 2022-04-21 12:09 UTC

This package is auto-updated.

Last update: 2023-02-15 09:21:54 UTC


README

Displaying verbose messages

Verbose

Stable Version Unstable Version Total Downloads License

Installation

To get the latest version of Verbose, simply require the project using Composer:

$ composer require dragon-code/verbose

Or manually update require block of composer.json and run composer update.

{
    "require": {
        "dragon-code/verbose": "^4.0"
    }
}

Using

use DragonCode\Verbose\Services\Logger;
use DragonCode\Verbose\Facades\Log;

Logger::io($this->getIO());

Log::write('foo');
Log::write('bar');
Log::write('baz');

License

This package is licensed under the MIT License.