hinet/flysystem-baidu-bos

Flysystem adapter for Baidu Bos SDK v0.9

dev-master / 1.0.x-dev 2021-04-14 10:31 UTC

This package is not auto-updated.

Last update: 2024-04-12 08:46:19 UTC


README

Flysystem adapter for Baidu Bos SDK v0.8.20

Author Software License Packagist Version Total Downloads

Installation

composer require "hinet/flysystem-baidu-bos": "~1.0.5"

Usage

use Hinet\Flysystem\BaiduBos\BaiduBosAdapter;
use BaiduBce\Services\Bos\BosClient;
use League\Flysystem\Filesystem;

$BOS_TEST_CONFIG = array(
    'credentials' => array(
      'ak' => 'You AK',
      'sk' => 'You SK',
    ),
    'endpoint' => 'http://bj.bcebos.com',
);
$client = new BosClient($BOS_TEST_CONFIG);

$adapter = new BaiduBosAdapter($client, 'bucket-name');

$filesystem = new Filesystem($adapter);