Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 495 Bytes

File metadata and controls

23 lines (22 loc) · 495 Bytes

Ucloud ufile storage for laravel

base on https://docs.ucloud.cn/api-docs/ufile-api/

Usage:

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

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

config

[
    'ucloud-ufile'=>[
        'bucket'=>'xxx',
        'public_key'=>'xxx',
        'secret_key'=>'xxx',
        'suffix'=>'',
        'prefix'=>'',
    ]
]