boofw/flysystem-qiniu

Flysystem adapter for Qiniu

Installs: 29

Dependents: 0

Suggesters: 1

Security: 0

Stars: 2

Watchers: 2

Forks: 3

Open Issues: 0

pkg:composer/boofw/flysystem-qiniu

v1.0.0 2015-12-11 05:37 UTC

This package is not auto-updated.

Last update: 2025-09-27 23:52:08 UTC


README

This is a Flysystem adapter for the Qiniu.

composer require boofw/flysystem-qiniu

Bootstrap

<?php
use League\Flysystem\Filesystem;
use Boofw\Flysystem\Qiniu\QiniuAdapter as Adapter;

$ak = '**********';
$sk = '**********';
$bucket = 'bucket-name';

$filesystem = new Filesystem(new Adapter($ak, $sk, $bucket));