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
Requires
- php: >=5.4.0
- league/flysystem: 1.0.15
- qiniu/php-sdk: 7.0.6
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));