kaysonwu/flysystem-aliyun-oss 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kaysonwu/flysystem-aliyun-oss

最新稳定版本:1.0.0

Composer 安装命令:

composer require kaysonwu/flysystem-aliyun-oss

包简介

Flysystem adapter for the Aliyun OSS SDK

README 文档

README

Author Software License Packagist Version Total Downloads

使用中文阅读

Advantages

  1. Support Laravel & Lumen
  2. Compared with xxtime/flysystem-aliyun-oss, it is more in line with the flysystem interface specification. Because the flysystem interface suggests that the return value is array or bool, but xxtime/flysystem-aliyun-oss is not very strict about exception handling.
  3. Compared to apollopy/flysystem-aliyun-oss <= 1.2.0 supports visibility get/set.
  4. Support Dynamically call OSS SDK methods.

ps: The comparison of similar projects is only to highlight the differences. In fact, they are all very good.

Installation

Install via composer

Run the following command to pull in the latest version:

composer require kaysonwu/flysystem-aliyun-oss

Laravel Install

If your laravel version <=5.4, Add the service provider to the providers array in the config/app.php config file as follows:

'providers' => [

    ...

    Kaysonwu\Flysystem\Aliyun\OssServiceProvider::class,
]
Lumen Install

Add the following snippet to the bootstrap/app.php file under the providers section as follows:

...

// Add this line
$app->register(Kaysonwu\Flysystem\Aliyun\OssServiceProvider::class);
Config for Laravel/Lumen

Add the adapter config to the disks array in the config/filesystems.php config file as follows:

'disks' => [
    ...

    'aliyun-oss' => [

        'driver' => 'aliyun-oss',

        /**
         * The AccessKeyId from OSS or STS.
         */
        'key' => '<your AccessKeyId>',

        /**
         * The AccessKeySecret from OSS or STS
         */
        'secret' => '<your AccessKeySecret>',

        /**
         * The domain name of the datacenter.
         *
         * @example: oss-cn-hangzhou.aliyuncs.com
         */
        'endpoint' => '<endpoint address>',

        /**
         * The bucket name for the OSS.
         */
        'bucket' => '<bucket name>',

        /**
         * The security token from STS.
         */
        'token' => null,

        /**
         * If this is the CName and binded in the bucket.
         *
         * Values: true or false
         */
        'cname' => false,
        
        /**
         * Path prefix
         */
        'prefix' => '',
        
        /**
         *  Request header options.
         * 
         *  @example [x-oss-server-side-encryption => 'KMS']
         */
        'options' => []
    ]
]

Usage

Basic

Please refer to filesystem-api.

use Kaysonwu\Flysystem\Aliyun\OssAdapter;
use League\Flysystem\Filesystem;
use OSS\OssClient;

$client = new OssClient(
    '<your AccessKeyId>',
    '<your AccessKeySecret>',
    '<endpoint address>'
);

$adapter = new OssAdapter($client, '<bucket name>', 'optional-prefix', 'optional-options');
$filesystem = new Filesystem($adapter);

$filesystem->has('file.txt');

// Dynamic call SDK method.
$adapter->setTimeout(30);
$filesystem->getAdapter()->setTimeout(30);
Laravel/Lumen

Please refer to filesystem

use Illuminate\Support\Facades\Storage;

Storage::disk('aliyun-oss')->get('path');

// Dynamic call SDK method.
Storage::disk('aliyun-oss')->getAdapter()->setTimeout(30);

统计信息

  • 总下载量: 15.65k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-12-19