Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xujif/ucloud-ufile-storage

ucloud-ufile-storage for laravel
https://github.com/xujif/ucloud-ufile-storage

Last synced: 17 days ago
JSON representation

ucloud-ufile-storage for laravel

Awesome Lists containing this project

README

        

# 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:
```php
'providers' => [
// Other service providers...
Xujif\UcloudUfileStorage\UfileServiceProvider::class,
],
```
config
```
[
'ucloud-ufile'=>[
'bucket'=>'xxx',
'public_key'=>'xxx',
'secret_key'=>'xxx',
'suffix'=>'',
'prefix'=>'',
]
]
```