fisharebest/flysystem-chroot-adapter

Creates a filesystem from a sub-folder in another filesystem.

3.0.0 2022-02-18 12:45 UTC

This package is auto-updated.

Last update: 2024-04-18 18:22:17 UTC


README

Author Latest Stable Version Build Status Coverage Status Scrutinizer Code Quality StyleCI Software License

This adapter creates a new filesystem from a sub-folder of an existing filesystem.

IMPORTANT: Since flysystem 3.3, this functionality is now available from flysystem directly. You should migrate to that package.

In composer.json, replace fisharebest/flysystem-chroot-adapter with league/flysystem-path-prefixing.

In your code, replace Fisharebest\Flysystem\Adapter\ChrootAdapter with League\Flysystem\PathPrefixing.

Installation

composer require fisharebest/flysystem-chroot-adapter

Usage

use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Local;
use Fisharebest\Flysystem\Adapter\ChrootAdapter

// Write a file to a filesystem.
$filesystem = new Filesystem(new Local(__DIR__));
$filesystem->write('foo/bar/fab/file.txt', 'hello world!');

// Create a chroot filesystem from the foo/bar folder.
$chroot = new Filesystem(new ChrootAdapter($filesystem, 'foo/bar'));

// And read it back from the chroot.
$chroot->read('fab/file.txt'); // 'hello world!'