2015-02-05 21:39:52 -06:00
|
|
|
<?php
|
2017-08-12 03:27:45 -05:00
|
|
|
|
2016-10-04 23:52:15 -05:00
|
|
|
/**
|
|
|
|
* filesystems.php
|
2017-08-18 14:08:51 -05:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
2016-05-20 01:57:45 -05:00
|
|
|
|
2017-08-18 14:08:51 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
2015-02-05 21:39:52 -06:00
|
|
|
return [
|
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Filesystem Disk
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify the default filesystem disk that should be used
|
|
|
|
| by the framework. A "local" driver, as well as a variety of cloud
|
|
|
|
| based drivers are available for your choosing. Just store away!
|
|
|
|
|
|
2016-01-08 08:59:21 -06:00
|
|
|
| Supported: "local", "ftp", "s3", "rackspace"
|
2015-06-27 01:06:24 -05:00
|
|
|
|
|
|
|
|
*/
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
'default' => 'local',
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Cloud Filesystem Disk
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Many applications store files both locally and in the cloud. For this
|
|
|
|
| reason, you may specify a default "cloud" driver here. This driver
|
|
|
|
| will be bound as the Cloud disk implementation in the container.
|
|
|
|
|
|
|
|
|
*/
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2016-01-08 08:59:21 -06:00
|
|
|
'cloud' => 's3',
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Filesystem Disks
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may configure as many filesystem "disks" as you wish, and you
|
|
|
|
| may even configure multiple disks of the same driver. Defaults have
|
|
|
|
| been setup for each driver as an example of the required options.
|
|
|
|
|
|
|
|
|
*/
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2016-01-08 08:59:21 -06:00
|
|
|
'disks' => [
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2016-12-09 00:20:48 -06:00
|
|
|
'local' => [
|
2015-06-27 01:06:24 -05:00
|
|
|
'driver' => 'local',
|
2016-01-08 08:59:21 -06:00
|
|
|
'root' => storage_path('app'),
|
2015-06-27 01:06:24 -05:00
|
|
|
],
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2016-05-14 14:49:16 -05:00
|
|
|
'upload' => [
|
2016-02-22 23:17:04 -06:00
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('upload'),
|
|
|
|
],
|
2016-05-14 14:49:16 -05:00
|
|
|
'export' => [
|
2016-02-22 23:17:04 -06:00
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('export'),
|
|
|
|
],
|
2016-05-14 14:49:16 -05:00
|
|
|
'database' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('database'),
|
|
|
|
],
|
2016-12-09 00:20:48 -06:00
|
|
|
'seeds' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => base_path('resources/seeds'),
|
|
|
|
],
|
2016-12-27 12:34:27 -06:00
|
|
|
'stubs' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => base_path('resources/stubs'),
|
|
|
|
],
|
|
|
|
|
2016-09-15 23:19:40 -05:00
|
|
|
'public' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('app/public'),
|
|
|
|
'visibility' => 'public',
|
2016-01-08 08:59:21 -06:00
|
|
|
],
|
|
|
|
|
|
|
|
's3' => [
|
2015-06-27 01:06:24 -05:00
|
|
|
'driver' => 's3',
|
|
|
|
'key' => 'your-key',
|
|
|
|
'secret' => 'your-secret',
|
|
|
|
'region' => 'your-region',
|
|
|
|
'bucket' => 'your-bucket',
|
|
|
|
],
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
],
|
2015-02-05 21:39:52 -06:00
|
|
|
|
|
|
|
];
|