innmind / encoding
1.1.0
2024-06-26 17:23 UTC
Requires
- php: ~8.2
- innmind/filesystem: ~7.1
- innmind/immutable: ~5.7
- innmind/time-continuum: ~3.4
Requires (Dev)
- innmind/black-box: ~5.5
- innmind/coding-standard: ~2.0
- vimeo/psalm: ~5.15
This package is auto-updated.
Last update: 2024-10-26 18:01:23 UTC
README
This packages allows to encode and compress files and directories without the need for them to be written to the filesystem and never loaded entirely in memory.
Note Each file contained in a
tar
file can't exceed an 8Go size.
Installation
composer require innmind/encoding
Usage
Take a look at the documentation for a more in-depth understanding of the possibilities.
Creating an archive of a directory
use Innmind\Filesystem\{ Adapter\Filesystem, Name, }; use Innmind\TimeContinuum\Earth; use Innmind\Url\Path; use Innmind\Encoding\{ Gzip, Tar, }; $adapter = Filesystem::mount(Path::of('some/directory/')); $tar = $adapter ->get(Name::of('data')) ->map(Tar::encode(new Earth\Clock)) ->map(Gzip::compress()) ->match( static fn($file) => $file, static fn() => null, );
Here $tar
represents a .tar.gz
file containing all the files and directories from sime/directory/data/
, unless the data
doesn't exist then it is null
.