PHP code example of chapdel / scarabee

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

    

chapdel / scarabee example snippets


return [
    'enable' => env('SCARABEE_ENABLE', true),
    'port' => env('SCARABEE_PORT', 5050),
    'url' => env('SCARABEE_URL', 'http://localhost'),
];

// Dump a variable
scarabee(["name" => "chapdel"]);

// Dump models
scarabee()->model(User::find(1));

// Start dump queries
scarabee()->showQueries();

// Stop dump queries
scarabee()->stopShowingQueries();

// Dump mails
scarabee()->mail(new TestMail());
bash
php artisan vendor:publish --provider="Chapdel\Scarabee\ScarabeeServiceProvider" --tag="scarabee-config"