dezsidog/laravel-baidu-bos
Composer 安装命令:
composer require dezsidog/laravel-baidu-bos
包简介
this is a laravel package for baidu bos
README 文档
README
this is a package for laravel storage by baidu bos sdk
install
composer require dezsidog/laravel-baidu-bos
Configuration
Edit config\filesystems.php:
Add bos disk
'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path().'/app', ], 's3' => [ 'driver' => 's3', 'key' => 'your-key', 'secret' => 'your-secret', 'region' => 'your-region', 'bucket' => 'your-bucket', ], 'rackspace' => [ 'driver' => 'rackspace', 'username' => 'your-username', 'key' => 'your-key', 'container' => 'your-container', 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', 'region' => 'IAD', 'url_type' => 'publicURL' ], 'baidu-bos' => [ 'driver' => 'baidu-bos', 'accessKeyId' => 'your-ak', 'secretAccessKey' => 'your-sk', 'sessionToken' => 'your-token', 'endpoint' => 'your-endpoint', 'stsEndpoint' => 'your-sts-endpoint', 'bucket' => 'amiedu', //if use Storage::url(path); file this 'protocol' => 'http:// or https://', 'domain' => 'www.xxxx.com', 'uri_prefix' => 'upload',//this can be '' ], ],
usage
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2017-10-24