fnsc/laravel-google-drive

Filesystem adapter for Google Drive

1.2.0 2023-09-30 22:55 UTC

This package is auto-updated.

Last update: 2024-03-30 00:31:19 UTC


README

68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f666e73632f6c61726176656c2d676f6f676c652d6472697665 Tests Status 68747470733a2f2f6170702e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f6130643031343664653766653432313239356539396130633039623964623863 68747470733a2f2f6170702e636f646163792e636f6d2f70726f6a6563742f62616467652f436f7665726167652f6130643031343664653766653432313239356539396130633039623964623863

Introduction

This library provides a simple and easy way to deal with Google Drive files.

Requirements

  • PHP >= 8.1^
  • Laravel >= 10.*

Installation

You can install the library via Composer:

composer require fnsc/laravel-google-drive

Guide

First, add this file LaravelGoogleDrive\ServiceProvider::class to your config/app.php file.

Then publish the google_drive.php config file using the following command. That will add google_drive.php config file into you config directory.

php artisan vendor:publish --provider="LaravelGoogleDrive\ServiceProvider"

Now go to Google Cloud Platform and create a service account using this link and click on Service Account.

step 1

When you finish, the Google Service Manager will generate a .json file. That file contains your credentials. Download it and keep it safe.

Add this file to your project, and DO NOT ADD THIS FILE TO YOUR GIT REPOSITORY.

Now add the following env_vars into your .env file. The GOOGLE_APPLICATION_CREDENTIALS is the path to your service-account.json file, and the GOOGLE_DRIVE_FOLDER_ID is your directory on Google Drive.

.env file

Now you must share the Google Drive directory with the client_email present in your service-account.json file, granting privileges to read and write.

Finally, you can follow the examples.

License

This package is free software distributed under the terms of the MIT license