PHP code example of overfirmament / over-util

1. Go to this page and download the library: Download overfirmament/over-util 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/ */

    

overfirmament / over-util example snippets


    'http_out' => [
            'driver' => 'daily',
            'path' => storage_path('logs/http_out/info.log'),
            'level' => env('LOG_LEVEL', 'debug'),
            'days' => 14,
            'formatter' => Overfirmament\OverUtils\Logger\LogFormatter::class
        ],

        "http_in" => [
            'driver' => 'daily',
            'path' => storage_path('logs/http_in/info.log'),
            'level' => env('LOG_LEVEL', 'debug'),
            'days' => 14,
            'formatter' => Overfirmament\OverUtils\Logger\LogFormatter::class
        ],