litipk/flysystem-fallback-adapter

This package is abandoned and no longer maintained. No replacement package was suggested.

Flysystem adapter for fallback filesystems

Maintainers

πŸ‘ castarco

Package info

github.com/Litipk/flysystem-fallback-adapter

Issues

pkg:composer/litipk/flysystem-fallback-adapter

Statistics

Installs: 506 525

Dependents: 1

Suggesters: 1

Stars: 17

0.1.3 2016-06-23 00:18 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 1fdeb9352990deb8cba2a2c57cc94e2ff7e1381b

  • AndrΓ©s Correa Casablanca <castarco.woop@litipk.com>

This package is auto-updated.

Last update: 2024-01-07 19:26:27 UTC


README

πŸ‘ Author
πŸ‘ Build Status
πŸ‘ Coverage Status
πŸ‘ Quality Score
πŸ‘ Software License
πŸ‘ Packagist Version
πŸ‘ Total Downloads

This adapter has been created to allow using a fallback filesystem for read operations when the files can't be accessed through the main adapter.

Installation

composer require litipk/flysystem-fallback-adapter

Usage

$main = new League\Flysystem\Adapter\AwsS3(...);
$fallback = new League\Flysystem\Adapter\Local(...);
$adapter = new Litipk\Flysystem\Fallback\FallbackAdapter($main, $fallback);