xutl/flysystem-aliyun-oss

这是为阿里云OSS提供的Flysystem适配器。

1.0.2 2018-10-20 08:46 UTC

This package is auto-updated.

Last update: 2024-09-20 22:23:05 UTC


README

这是为阿里云OSS提供的Flysystem适配器

安装

composer require xutl/flysystem-aliyun-oss

对于Laravel

必须注册此服务提供者。

// config/app.php

'providers' => [
    '...',
    XuTL\Flysystem\AliyunOss\AliyunOssServiceProvider::class,
];

编辑配置文件:config/filesystems.php

添加配置

'oss' => [
    'driver'     => 'oss',
    'access_id'  => env('OSS_ACCESS_ID','your id'),
    'access_key' => env('OSS_ACCESS_KEY','your key'),
    'bucket'     => env('OSS_BUCKET','your bucket'),
    'endpoint'   => env('OSS_ENDPOINT','your endpoint'),
    'prefix'     => env('OSS_PREFIX', ''), // optional
],

将默认值更改为oss

    'default' => 'oss'

使用

查看 Laravel wiki