jekhy / ucloud-ufile-storage
laravel 的 ucloud-ufile-storage
1.2.2
2020-06-10 02:14 UTC
Requires
- php: ^7.1.3
- guzzlehttp/guzzle: ^6.0
- illuminate/support: 5.*
- league/flysystem: ^1.0
Requires (Dev)
- phpunit/phpunit: ^4.0
README
基于
- https://docs.ucloud.cn/api/ufile-api/
- https://github.com/xujif/ucloud-ufile-sdk
- https://github.com/xujif/ucloud-ufile-storage
用法
在您的应用程序配置文件中注册 Jekhy\UcloudUfileStorage\UfileServiceProvider::class;
'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'=>'',
],
]