PHP code example of marcandreappel / laravel-backblaze-b2
1. Go to this page and download the library: Download marcandreappel/laravel-backblaze-b2 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/ */
marcandreappel / laravel-backblaze-b2 example snippets
'b2' => [
'driver' => 'b2',
'accountId' => env('B2_APPLICATION_KEY_ID'),
'applicationKey' => env('B2_APPLICATION_KEY_SECRET'),
'bucketName' => env('B2_BUCKET_NAME'),
'bucketId' => env('B2_BUCKET_ID', ''),
],
php
\MarcAndreAppel\BackblazeB2\BackblazeB2ServiceProvider::class,