aprsoft/yii2-aliyun-oss

yii2-aliyun-oss

Installs: 34

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Type:yii2-extension

1.0.1 2017-04-26 03:18 UTC

This package is not auto-updated.

Last update: 2024-04-28 01:17:00 UTC


README

yii2-aliyun-oss

Installation

The preferred way to install this extension is through composer.

Either run

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

or add

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

to the require section of your composer.json file.

Usage

web.php

'aliyunOssImage' => [
    "class" => 'AprSoft\Aliyun\OSS\Image',
    "accessKeyId" => 'xxxxxxxxxxxxxx',
    "accessKeySecret" => 'xxxxxxxx',
    "bucket" => 'xxxxx',
    "endpoint" => 'http://oss-cn-zhangjiakou.aliyuncs.com',
],
'aliyunOssBucket' => [
    "class" => 'AprSoft\Aliyun\OSS\Bucket',
    "accessKeyId" => 'xxxxxxx',
    "accessKeySecret" => 'xxxxxx',
    "endpoint" => 'http://oss-cn-zhangjiakou.aliyuncs.com',
],

代码中使用

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