jekhy/ucloud-ufile-storage

laravel 的 ucloud-ufile-storage

1.2.2 2020-06-10 02:14 UTC

This package is auto-updated.

Last update: 2024-09-10 12:29:44 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'=>'',
    ],
]