aprsoft/yii2-qiniu-oss

yii2-qiniu-oss

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Type:yii2-extension

1.0.1 2017-04-26 03:28 UTC

This package is not auto-updated.

Last update: 2024-04-27 18:14:57 UTC


README

yii2-qiniu-oss

Installation

The preferred way to install this extension is through composer.

Either run

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

or add

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

to the require section of your composer.json file.

Usage

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();