PHP code example of shootkiran / merobug

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

    

shootkiran / merobug example snippets


'channels' => [
    // ...
    'merobug' => [
        'driver' => 'merobug',
    ],
],

'channels' => [
    'stack' => [
        'driver' => 'stack',
        'channels' => ['single', 'merobug'],
    ],
    //...
],
bash
php artisan vendor:publish --provider="MeroBug\ServiceProvider"
bash
php -r "file_exists('config/') || mkdir('config/'); copy('vendor/laravel/lumen-framework/config/logging.php', 'config/logging.php');"