jekhy/ucloud-ufile-storage

ucloud-ufile-storage for laravel

1.2.2 2020-06-10 02:14 UTC

This package is auto-updated.

Last update: 2024-05-10 11:48:34 UTC


README

Base on:

Usage:

register the Jekhy\UcloudUfileStorage\UfileServiceProvider::class; in your app configuration file:

'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'=>'',
    ],
]