brighty/cilog

A simple log library for Internal use.

v1.0.12 2024-10-09 17:48 UTC

This package is not auto-updated.

Last update: 2025-07-02 21:06:43 UTC


README

A simple log library for Internal use.

Installation

Laravel

Download Cilog with composer

composer require brighty/cilog

Installation

# Install Cilog
php artisan cilog:install

Usage/Examples

use Brighty\Cilog\Cilog;


Cilog::log("Succesfully added data!", [$request->all()])

Lumen

Download Cilog with composer

composer require brighty/cilog

Modify the bootstrap flow

/** @file bootstrap/app.php */

// Register service provider
$app->register(Brighty\Cilog\Providers\LumenCilogServiceProvider::class);

Installation

# Install Cilog
php artisan cilog:install --lumen

Usage/Examples

use Brighty\Cilog\Cilog;


Cilog::log("Succesfully added data!", [$request->all()])

Authors

License

MIT