oss-tools / flysystem-ibm-cos
IBM云对象存储的Flysystem接口
2.0.0
2022-03-11 19:06 UTC
Requires
- php: ^8.0.2
- league/flysystem-aws-s3-v3: ^3.0
This package is auto-updated.
Last update: 2024-09-12 01:09:55 UTC
README
这是IBM Cloud Object Storage的适配器,用于Flysystem。
注意
本软件包是基于tavux/flysystem-ibm-cos的独立分支
安装
Composer是最佳选择,正如Flysystem的所有内容一样!
composer require oss-tools/flysystem-ibm-cos
使用方法
初始设置可能如下所示
use OSSTools\Flysystem\IBMCloudObjectStorage\IbmCosAdapter; use League\Flysystem\Filesystem; $storage = new Filesystem( new IbmCosAdapter([ 'key' => '<access_key>', 'secret' => '<access_secret_key>', 'region' => '<region>', 'endpoint' => '<endpoint>', ], '<bucket>') ); var_dump($storage->listContents(''));