nadimtuhin / archiver
Archive files with passwords
dev-master / 0.1.x-dev
2026-06-28 18:47 UTC
Requires
- symfony/process: 2.6.*
This package is not auto-updated.
Last update: 2026-08-02 03:56:35 UTC
README
PHP library for creating password-protected zip archives via Symfony Process.
Install
{
"require": {
"nadimtuhin/archiver": "0.1.*@dev"
}
}
Usage
$process = new Symfony\Component\Process\Process(); $zipper = new NadimTuhin\Archiver\ZipArchiver($process); $zipper->setInputFilename("myfile.txt"); $zipper->setPassword("1234"); $zipper->archive();