zing/flysystem-oss

OSS filesystem adapter for Flysystem.

3.2.0 2024-03-18 16:03 UTC

README

tests Code Coverage Latest Stable Version Total Downloads Latest Unstable Version License

Requires

Version Information

Version Flysystem PHP Version Status
3.x 3.10+ >= 8.0 Active support 🚀
2.x 2.x - 3.x >= 7.2 Active support
1.x 1.x >= 7.2 Active support

Require Flysystem OSS using Composer:

composer require zing/flysystem-oss

Usage

use League\Flysystem\Filesystem;
use OSS\OssClient;
use Zing\Flysystem\Oss\OssAdapter;

$prefix = '';
$config = [
    'key' => 'aW52YWxpZC1rZXk=',
    'secret' => 'aW52YWxpZC1zZWNyZXQ=',
    'bucket' => 'test',
    'endpoint' => 'oss-cn-shanghai.aliyuncs.com',
];

$config['options'] = [
    'url' => '',
    'endpoint' => $config['endpoint'], 
    'bucket_endpoint' => '',
    'temporary_url' => '',
];

$client = new OssClient($config['key'], $config['secret'], $config['endpoint']);
$adapter = new OssAdapter($client, $config['bucket'], $prefix, null, null, $config['options']);
$flysystem = new Filesystem($adapter);

Integration

Reference

league/flysystem-aws-s3-v3

License

Flysystem OSS is an open-sourced software licensed under the MIT license.