vector88/laravel-gaefs
laravel-gaefs
Google App Engine (GAE) Filesystem Support for Laravel 5.4.
This package is made from GAE filesystem code included in Ron Shpasser's Laravel 5 GAE Support Library (Released under the MIT License).
Installation
-
Require the
laravel-gaefspackage in your Laravel project.composer require vector88/laravel-gaefs -
Add the
GaeFsServiceProviderto theprovidersarray inconfig/app.php:'providers' => [ ... Vector88\GaeFs\GaeFsServiceProvider::class, ... ], -
Add a
'gae'disk toconfig/filesystem.php:'disks' => [ ... 'gae' => [ 'driver' => 'gae', 'root' => env( 'GAE_FILESYSTEM_ROOT', storage_path() . '/app.php' ), ], ... ], -
Update your environment variables to use the GAE filesystem:
FILESYSTEM = gae
Author
Daniel 'Vector' Kerr vector.kerr@gmail.com
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
631,580,251
9,707