flysystem-vfs icon indicating copy to clipboard operation
flysystem-vfs copied to clipboard

Flysystem VFS Adapter

Flysystem Adapter for VFS

Latest Version Software License Build Status Total Downloads

This is a VFS adapter for Flysystem. It allows you to mount a virtual filesystem.

Installation

composer require league/flysystem-vfs

Usage

use League\Flysystem\Vfs\VfsAdapter;
use League\Flysystem\Filesystem;
use VirtualFileSystem\FileSystem as Vfs;

$adapter = new VfsAdapter(new Vfs);
$filesystem = new Filesystem($adapter);