Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xujif/ucloud-ufile-storage
- Owner: xujif
- Created: 2015-11-11T03:11:54.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-09-27T06:18:17.000Z (about 6 years ago)
- Last Synced: 2024-04-11T22:17:33.706Z (9 months ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 4
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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'=>'',
]
]
```