jekhy/ucloud-ufile-storage

ucloud-ufile-storage for laravel

Downloads

1056

Stars

0

Version

1.2.2

Ucloud ufile storage for Laravel

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