Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.06 KB

README.md

File metadata and controls

45 lines (28 loc) · 1.06 KB

TestFs

CI

Virtual filesystem for PHP for use with testing, implemented using a stream wrapper.

Requirements

This library requires PHP >= 8.1.

Installation

Install using Composer:

composer require christeredvartsen/testfs

Usage

To enable the stream wrapper you must first register it:

TestFs\StreamWrapper::register();

When it is registered it will pick up usage of the tfs:// protocol used with filesystem functions, for instance fopen(), file_get_contents(), touch() and so forth.

You can also fetch the "root" of the virtual filesystem after registering the wrapper to inspect the assets (files and/or directories within the virtual filesystem):

$root = TestFs\StreamWrapper::getRoot();

Development

git clone [email protected]:christeredvartsen/testfs.git
composer install
composer run ci

License

Licensed under the MIT License.