PHP code example of worksome / ceevee

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

    

worksome / ceevee example snippets


return [

    'default' => env('CEEVEE_DRIVER', 'null'),

    'services' => [

        'sovren' => [
            'account_id' => env('SOVREN_ACCOUNT_ID'),
            'service_key' => env('SOVREN_SERVICE_KEY'),
            'region' => 'eu',
            'options' => [],
        ],

    ],

];

$ceevee = new Worksome\Ceevee\Ceevee();

$details = $ceevee->read($file);

// Get the summary
$details->summary();
bash
php artisan vendor:publish --tag="ceevee-config"