Laravel 9 upgrade

This commit is contained in:
Čarodej
2022-02-25 17:37:17 +01:00
parent c3a6f5d703
commit ab3a307dc1
48 changed files with 1844 additions and 1549 deletions

View File

@@ -111,7 +111,7 @@ return [
* The disk names on which the backups will be stored.
*/
'disks' => [
env('FILESYSTEM_DRIVER', 'local'),
env('FILESYSTEM_DISK', 'local'),
],
],

View File

@@ -12,20 +12,7 @@ return [
|
*/
'default' => env('FILESYSTEM_DRIVER', 'local'),
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
'default' => env('FILESYSTEM_DISK', 'local'),
/*
|--------------------------------------------------------------------------