wuxs/ucloud-ufile-storage

ucloud-ufile-storage for laravel

1.2.2 2020-04-16 03:24 UTC

This package is auto-updated.

Last update: 2024-09-16 13:38:25 UTC


README

基于

用法

在你的应用程序配置文件中注册 Jekhy\UcloudUfileStorage\UfileServiceProvider::class;

'providers' => [
    // Other service providers...
    Jekhy\UcloudUfileStorage\UfileServiceProvider::class,
],

config/filesystems.php

'disks' => [
    'yourDiskName'=>[
        'driver' => 'ucloud-ufile',
        'bucket'=>'xxx',
        'public_key'=>'xxx',
        'secret_key'=>'xxx',
        'suffix'=>'.ufile.ucloud.cn',
        'prefix'=>'',
    ],
]