| Package Data | |
|---|---|
| Maintainer Username: | Vector88 |
| Maintainer Contact: | vector.kerr@gmail.com (Daniel Kerr) |
| Package Create Date: | 2017-06-04 |
| Package Last Update: | 2017-06-04 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-10 03:18:10 |
| Package Statistics | |
|---|---|
| Total Downloads: | 61 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
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).
Require the laravel-gaefs package in your Laravel project.
composer require vector88/laravel-gaefs
Add the GaeFsServiceProvider to the providers array in config/app.php:
'providers' => [
...
Vector88\GaeFs\GaeFsServiceProvider::class,
...
],
Add a 'gae' disk to config/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
Daniel 'Vector' Kerr vector.kerr@gmail.com