1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- use core\dict\DictLoader;
- $system = [
- 'default' => 'local',
- 'drivers' => [
-
- 'local' => [],
-
- 'qiniu' => [
- 'access_key' => '',
- 'secret_key' => '',
- 'bucket' => ''
- ],
-
- 'aliyun' => [
- 'access_key' => '',
- 'secret_key' => '',
- 'endpoint' => '',
- 'bucket' => ''
- ],
-
- 'tencent' => [
- 'access_key' => '',
- 'secret_key' => '',
- 'region' => '',
- 'bucket' => ''
- ],
- ],
-
- 'rules' => [
- 'image' => [
- 'ext' => ['jpg', 'jpeg', 'png', 'gif'],
- 'mime' => ['image/jpeg', 'image/gif', 'image/png'],
- 'size' => 10485760
- ],
- 'video' => [
- 'ext' => ['mp4'],
- 'mime' => ['video/mp4'],
- 'size' => 104857600
- ],
- 'wechat' => [
- 'ext' => ['pem', 'key'],
- 'mime' => [
- 'application/x-x509-ca-cert',
- 'application/octet-stream',
- 'application/x-iwork-keynote-sffkey'
- ],
- 'size' => 2097152
- ],
- 'aliyun' => [
- 'ext' => ['crt'],
- 'mime' => [
- 'application/x-x509-ca-cert',
- 'application/octet-stream'
- ],
- 'size' => 2097152
- ],
- 'applet' => [
- 'ext' => ['zip', 'rar'],
- 'mime' => [
- 'application/zip',
- 'application/vnd.rar',
- 'application/x-zip-compressed'
- ],
- 'size' => 2097152
- ],
- 'excel' => [
- 'ext' => ['xls', 'xlsx'],
- 'mime' => [
- 'application/vnd.ms-excel',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
- ],
- 'size' => 10485760
- ]
- ],
- 'thumb' => [
- 'thumb_type' => [
- 'big' => [
- 'width' => 1200,
- 'height' => 1200,
- ],
- 'mid' => [
- 'width' => 800,
- 'height' => 800,
- ],
- 'small' => [
- 'width' => 200,
- 'height' => 200,
- ],
- ]
- ]
- ];
- return (new DictLoader("Config"))->load(['data' => $system, 'name' => 'upload']);
|