boofw/flysystem-qiniu

Flysystem adapter for Qiniu

Maintainers

Package info

github.com/boofw/flysystem-qiniu

pkg:composer/boofw/flysystem-qiniu

Statistics

Installs: 29

Dependents: 0

Suggesters: 1

Stars: 2

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-03-15 02:36:02 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));