Filesystem implementation for PHP
Warning
This project is not finished yet, work in progress.
You can install the package via composer:
composer require ghostwriter/filesystemYou can also star (🌟) this repo to find it easier later.
use GhostWriter\Filesystem\Filesystem;
$filesystem = new Filesystem();
$currentDirectory = $filesystem->currentWorkingDirectory();
$filesystem->write($currentDirectory . '/blm.txt', '#BlackLivesMatter');
$content = $filesystem->read($currentDirectory . '/blm.txt');
echo $content; // #BlackLivesMatterPlease see CHANGELOG.md for more information on what has changed recently.
Please see LICENSE for more information on the license that applies to this project.
Please see SECURITY.md for more information on security disclosure process.