miatiao / laravel-flysystem-bos
百度Bos的Laravel flysystem适配器
v0.0.2
2021-03-16 02:31 UTC
Requires
- php: >=7.0.0
- league/flysystem: ^1.0.20
README
百度Bos的Laravel Flysystem适配器
使用方法
config/filesystems.php
'bos' => [
'driver' => 'bos',
'bucket' => env('BOS_BUCKET', ''),
// bos 根目录文件夹
'prefix' => env('BOS_PREFIX', ''),
'options' => [
'credentials' => [
'accessKeyId' => env('BOS_AK', ''),
'secretAccessKey' => env('BOS_SK', ''),
],
'endpoint' => 'bj.bcebos.com',
'protocol' => 'https',
],
],