An open API service indexing awesome lists of open source software.

https://github.com/tinect/bunnycdn-s3-flysystem-adapter

BROKEN! SEE ISSUES! Supports Flysystem with version 1 for BunnyCDN.
https://github.com/tinect/bunnycdn-s3-flysystem-adapter

bunnycdn bunnycdn-storage flysystem flysystem-adapter s3-storage

Last synced: about 1 year ago
JSON representation

BROKEN! SEE ISSUES! Supports Flysystem with version 1 for BunnyCDN.

Awesome Lists containing this project

README

          

# Flysystem Adapter for BunnyCDN Storage with S3

> **⚠ ATTENTION**
> BunnyCDN has no offical S3-Support for the moment. Their API is currently accessible, but it might be break again. To be save: please use [PlatformCommunity/flysystem-bunnycdn](https://github.com/PlatformCommunity/flysystem-bunnycdn) for the moment

[![Test V1](https://github.com/tinect/bunnycdn-s3-flysystem-adapter/actions/workflows/test_v1.yml/badge.svg)](https://github.com/tinect/bunnycdn-s3-flysystem-adapter/actions/workflows/test_v1.yml)

This adapter supports Flysystem with version 1 for BunnyCDN.

## Installation

```bash
composer require tinect/bunnycdn-s3-flysystem-adapter:^1.0
```

## Usage

```php
use League\Flysystem\Filesystem;
use Tinect\Flysystem\BunnyCDN\BunnyCDNAdapter;

$client = new BunnyCDNAdapter('storageName', 'api-key-or-ftp-passwort', 'storage.bunnycdn.com', 'optionalSubfolder');
$filesystem = new Filesystem($client);
```