brayun / yii2-upload
aliyun oss for filesystem
1.7
2017-09-04 19:47 UTC
Requires
- creocoder/yii2-flysystem: ^0.9.0
- xxtime/flysystem-aliyun-oss: ^1.1
This package is not auto-updated.
Last update: 2024-11-06 04:04:15 UTC
README
上海柏锐网络科技有限公司是一家技术型服务企业.可提供专业的技术外包服务,定制OA,ERP,电商系统,H5网站,天猫淘宝H5,欢迎前来咨询
安装
composer require brayun/yii2-upload
说明
return [
//...
'components' => [
//...
'upload' => [
'class' => 'brayun\flysystem\OssFilesystem',
'ossServer' => 'oss-cn-beijing.aliyuncs.com',
'ossServerInternal' => 'oss-cn-shanghai-internal.aliyuncs.com',
'accessKeyId' => 'your-accessKeyId',
'accessKeySecret' => 'your-accessKeySecret',
'bucket' => 'your-bucket'
// 'internal' => false, // 默认外网, true内网
],
],
];