PHP code example of ilovintit / monolog-laravel-redis-formater

1. Go to this page and download the library: Download ilovintit/monolog-laravel-redis-formater library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ilovintit / monolog-laravel-redis-formater example snippets


$app->configureMonologUsing(function ($monolog) {
    $monolog->setHandlers([(new \Monolog\Handler\RedisHandler(new \Predis\Client([
        'scheme' => 'tcp',
        'host' => env('REDIS_MONOLOG_HOST', env('REDIS_HOST', '127.0.0.1')),
        'port' => env('REDIS_MONOLOG_PORT', env('REDIS_PORT', 6379)),
        'password' => env('REDIS_MONOLOG_PASSWORD', env('REDIS_PASSWORD', null))
    ]), env('REDIS_MONOLOG_NAME', 'RedisMonolog')))->setFormatter(new \Iit\RedisMonolog\RedisFormatter())]);
});