2015-02-05 21:39:52 -06:00
|
|
|
<?php
|
2017-09-14 10:40:02 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-08-12 03:27:45 -05:00
|
|
|
|
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
|
2017-09-09 15:32:11 -05:00
|
|
|
| by the framework. The "local" disk, as well as a variety of cloud
|
|
|
|
| based disks are available to your application. Just store away!
|
2015-06-27 01:06:24 -05:00
|
|
|
|
|
|
|
|
*/
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2017-09-09 15:32:11 -05:00
|
|
|
'default' => env('FILESYSTEM_DRIVER', '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
|
|
|
|
2017-09-09 15:32:11 -05:00
|
|
|
'cloud' => env('FILESYSTEM_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.
|
|
|
|
|
|
2017-09-09 15:32:11 -05:00
|
|
|
| Supported Drivers: "local", "ftp", "s3", "rackspace"
|
|
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
*/
|
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'),
|
2017-09-09 15:32:11 -05:00
|
|
|
'url' => env('APP_URL') . '/storage',
|
2016-09-15 23:19:40 -05:00
|
|
|
'visibility' => 'public',
|
2016-01-08 08:59:21 -06:00
|
|
|
],
|
|
|
|
|
|
|
|
's3' => [
|
2015-06-27 01:06:24 -05:00
|
|
|
'driver' => 's3',
|
2017-09-09 15:32:11 -05:00
|
|
|
'key' => env('AWS_KEY'),
|
|
|
|
'secret' => env('AWS_SECRET'),
|
|
|
|
'region' => env('AWS_REGION'),
|
|
|
|
'bucket' => env('AWS_BUCKET'),
|
2015-06-27 01:06:24 -05:00
|
|
|
],
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-06-27 01:06:24 -05:00
|
|
|
],
|
2015-02-05 21:39:52 -06:00
|
|
|
|
|
|
|
];
|