├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json ├── prefill.php └── src ├── Compiler └── StubFileCompiler.php ├── FileAlreadyExists.php ├── FileDoesNotExists.php └── Filesystem.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/composer.json -------------------------------------------------------------------------------- /prefill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/prefill.php -------------------------------------------------------------------------------- /src/Compiler/StubFileCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/src/Compiler/StubFileCompiler.php -------------------------------------------------------------------------------- /src/FileAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/src/FileAlreadyExists.php -------------------------------------------------------------------------------- /src/FileDoesNotExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/src/FileDoesNotExists.php -------------------------------------------------------------------------------- /src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/filesystem/HEAD/src/Filesystem.php --------------------------------------------------------------------------------