miatiao/laravel-flysystem-bos

百度Bos的Laravel flysystem适配器

v0.0.2 2021-03-16 02:31 UTC

This package is auto-updated.

Last update: 2024-09-16 10:02:55 UTC


README

百度Bos的Laravel Flysystem适配器

使用方法

config/filesystems.php

'bos' => [
    'driver'  => 'bos',
    'bucket'  => env('BOS_BUCKET', ''),
    //  bos 根目录文件夹
    'prefix'  => env('BOS_PREFIX', ''),
    'options' => [
        'credentials' => [
            'accessKeyId'     => env('BOS_AK', ''),
            'secretAccessKey' => env('BOS_SK', ''),
        ],
        'endpoint'    => 'bj.bcebos.com',
        'protocol'    => 'https',
    ],
],