├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── phpcs.xml ├── phpunit.xml ├── src └── Filesystem.php └── tests ├── assets └── file.txt ├── bootstrap.php └── test-filesystem.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/src/Filesystem.php -------------------------------------------------------------------------------- /tests/assets/file.txt: -------------------------------------------------------------------------------- 1 | first 2 | second 3 | third 4 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micropackage/filesystem/HEAD/tests/test-filesystem.php --------------------------------------------------------------------------------