aprsoft / yii2-aliyun-oss
yii2-aliyun-oss
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Type:yii2-extension
Requires
- php: >=7.0.0
- aliyuncs/oss-sdk-php: ~2.0
- yiisoft/yii2: ~2.0.5
This package is not auto-updated.
Last update: 2025-03-02 05:49:33 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();