PHP code example of rocketeers-app / rocketeers-laravel

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

    

rocketeers-app / rocketeers-laravel example snippets


'channels' => [

    'stack' => [
        'driver' => 'stack',
        'channels' => ['rocketeers', 'daily'],
        'ignore_exceptions' => false,
    ],

    'rocketeers' => [
        'driver' => 'rocketeers',
        'level' => 'debug',
    ],

    // ...

'default' => env('LOG_CHANNEL', 'stack'),



return [
    'rocketeers.api_token' => env('ROCKETEERS_API_TOKEN'),
];