去除 flysystem 配置

This commit is contained in:
邹景立 2022-10-26 10:06:29 +08:00
parent 5474c0cc8d
commit 18690abcec

View File

@ -1,37 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// | 免费声明 ( https://thinkadmin.top/disclaimer )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
return [
// 默认磁盘
'default' => 'local',
// 磁盘列表
'disks' => [
'local' => [
'type' => 'local',
'root' => with_path('runtime/storage'),
],
'public' => [
// 磁盘类型
'type' => 'local',
// 磁盘路径
'root' => with_path('public/storage'),
// 外部路径
'url' => '/storage',
// 可见性
'visibility' => 'public',
],
],
];