innmind / filesystem
Filesystem abstraction layer
Installs: 120 993
Dependents: 21
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
pkg:composer/innmind/filesystem
Requires
- php: ~8.4
- innmind/immutable: ~6.0
- innmind/io: ~4.0
- innmind/media-type: ~3.0
- innmind/url: ~5.0
- innmind/validation: ~3.0
- psr/log: ~3.0
Requires (Dev)
- innmind/black-box: ~6.5
- innmind/coding-standard: ~2.0
- innmind/static-analysis: ~1.3
- ramsey/uuid: ^4.6
- symfony/filesystem: ~6.0|~7.0|~8.0
Suggests
- innmind/black-box: For property based testing
Provides
Conflicts
- innmind/black-box: <6.0|~7.0
- dev-develop
- 9.0.0
- 8.1.0
- 8.0.0
- 7.6.0
- 7.5.1
- 7.5.0
- 7.4.0
- 7.3.0
- 7.2.0
- 7.1.0
- 7.0.0
- 6.6.0
- 6.5.1
- 6.5.0
- 6.4.0
- 6.3.2
- 6.3.1
- 6.3.0
- 6.2.0
- 6.1.0
- 6.0.0
- 5.2.0
- 5.1.0
- 5.0.0
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.1
- 3.0.0
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.0
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- dev-master
- dev-better-blackbox-integration
- dev-no-discard
- dev-next
- dev-close-once-read
This package is auto-updated.
Last update: 2026-01-25 17:30:50 UTC
README
Filesystem abstraction layer, the goal is to provide a model where you design how you put your files into directories without worrying where it will be persisted.
Installation
composer install innmind/filesystem
Usage
The whole model is structured around files, directories, contents and adapters. File, Directory and Content are immutable objects.
Example:
use Innmind\Filesystem\{ File, File\Content, Directory, Adapter, }; use Innmind\Url\Path; $directory = Directory::named('uploads')->add( File::named( $_FILES['my_upload']['name'], Content::ofString(\file_get_contents($_FILES['my_upload']['tmp_name'])), ), ); $adapter = Adapter::mount(Path::of('/var/www/web/'))->unwrap(); $_ = $adapter ->add($directory) ->unwrap();
This example show you how you can create a new directory uploads in the folder /var/www/web/ of your filesystem and create the uploaded file into it.
Note
For performance reasons the filesystem adapter only persist to disk the files that have changed (achievable via the immutable nature of file objects).