aprsoft/yii2-qiniu-oss

yii2-qiniu-oss

安装: 20

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 0

分支: 0

类型:yii2-extension

1.0.1 2017-04-26 03:28 UTC

This package is not auto-updated.

Last update: 2024-09-28 20:51:02 UTC


README

yii2-qiniu-oss

安装

安装此扩展的首选方式是通过 Composer.

运行

composer require --prefer-dist aprsoft/yii2-qiniu-oss "*"

或者在您的 composer.json 文件的 require 部分添加

"aprsoft/yii2-qiniu-oss": "*"

用法

web.php

'qiniuOssImage' => [
    "class" => 'AprSoft\Aliyun\OSS\Image',
    "accessKeyId" => 'xxxxxxxxxxxxxx',
    "accessKeySecret" => 'xxxxxxxx',
    "bucket" => 'xxxxx',
],
'qiniuOssBucket' => [
    "class" => 'AprSoft\Aliyun\OSS\Bucket',
    "accessKeyId" => 'xxxxxxx',
    "accessKeySecret" => 'xxxxxx',
],

代码中使用

$bucket = Yii::$app->qiniuOssImage;
$back = $bucket->list();