league/flysystem-vfs

A VFS adapter for Flysystem

Maintainers

Package info

github.com/thephpleague/flysystem-vfs

pkg:composer/league/flysystem-vfs

Statistics

Installs: 572 497

Dependents: 15

Suggesters: 0

Stars: 19

Open Issues: 1

1.1.0 2020-11-13 11:50 UTC

This package is auto-updated.

Last update: 2026-02-13 23:11:59 UTC


README

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);