Flysystem Stream Wrapper Save

Provides the ability to register Flysystem filesystems as stream wrappers.

Project README

Flysystem stream wrapper

Author Build Status AppVeyor Coverage Status Software License Packagist Version Total Downloads

Installation

composer require twistor/flysystem-stream-wrapper

Usage

use League\Flysystem\Adapter\Local;
use League\Flysystem\Filesystem;
use Twistor\FlysystemStreamWrapper;

// Get a Filesystem object.
$filesystem = new Filesystem(new Local('/some/path'));

FlysystemStreamWrapper::register('fly', $filesystem);

// Then you can use it like so.
file_put_contents('fly://filename.txt', $content);

mkdir('fly://happy_thoughts');

FlysystemStreamWrapper::unregister('fly');

Notes

This project tries to emulate the behavior of the standard PHP functions, rename(), mkdir(), unlink(), etc., as closely as possible. This includes emitting wanrings. If any differences are discovered, please file an issue.

Open Source Agenda is not affiliated with "Flysystem Stream Wrapper" Project. README Source: twistor/flysystem-stream-wrapper
Stars
58
Open Issues
15
Last Commit
6 months ago
License
MIT
Tags

Open Source Agenda Badge

Open Source Agenda Rating