https://github.com/nthndnn/gcs-url-generator
spatie/laravel-medialibrary URL Generator for Google Cloud Storage
https://github.com/nthndnn/gcs-url-generator
gcp gcs laravel laravel-medialibrary
Last synced: 20 days ago
JSON representation
spatie/laravel-medialibrary URL Generator for Google Cloud Storage
- Host: GitHub
- URL: https://github.com/nthndnn/gcs-url-generator
- Owner: nthndnn
- Created: 2019-12-28T21:30:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-04T14:09:24.000Z (almost 5 years ago)
- Last Synced: 2025-05-30T11:56:57.764Z (5 months ago)
- Topics: gcp, gcs, laravel, laravel-medialibrary
- Language: PHP
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Cloud Storage URL Generator
Google Cloud Storage URL Generator package for [spatie/laravel-medialibrary](https://github.com/spatie/laravel-medialibrary) and [superbalist/laravel-google-cloud-storage](https://github.com/Superbalist/laravel-google-cloud-storage).
## Installation
### superbalist/laravel-google-cloud-storage
Install the superbalist/laravel-google-cloud-storage dependency.
```
composer require superbalist/laravel-google-cloud-storage
```
Visit the [superbalist/laravel-google-cloud-storage](https://github.com/Superbalist/laravel-google-cloud-storage) repository and follow the installation instructions to finish set up.
### nathandunn/gcs-url-generator
Install the nathandunn/gcs-url-generator dependency using:
```
composer require nathandunn/gcs-url-generator
```
### spatie/laravel-medialibrary
Install the spatie/laravel-medialibrary dependency using:
```
composer require "spatie/laravel-medialibrary:^7.0.0"
```
In order to change the URL generator, you will need to publish the laravel-medialibrary config file. You can achive this using the following artisan command:
```
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="config"
```
In `medialibrary.php` register the Google Cloud Storage domain as follows:
```
'gcs' => [
'domain' => 'https://storage.cloud.google.com/'. env('GOOGLE_CLOUD_STORAGE_BUCKET'),
],
```
In the same file, register the URL generator class:
```
/*
* When urls to files get generated, this class will be called. Leave empty
* if your files are stored locally above the site root or on s3.
*/
'url_generator' => NathanDunn\UrlGenerator\GcsUrlGenerator::class,
```