PHP code example of jungehaie / laravel-filesystem-google-cloud-storage
1. Go to this page and download the library: Download jungehaie/laravel-filesystem-google-cloud-storage 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/ */
jungehaie / laravel-filesystem-google-cloud-storage example snippets
// config/app.php
'providers' => [
...
JungeHaie\GoogleCloudStorage\GoogleCloudStorageServiceProvider::class,
]
// bootstrap/app.php
$app->register(JungeHaie\GoogleCloudStorage\GoogleCloudStorageServiceProvider::class);
// bootstrap/app.php
$app->configure('filesystems');
'google' => [
'driver' => 'gcs',
'key' => env('GCS_KEY'),
'secret' => env('GCS_SECRET'),
'region' => env('GCS_REGION'),
'bucket' => env('GCS_BUCKET'),