nadimtuhin / archiver
Archive files with passwords
dev-master / 0.1.x-dev
2015-08-17 12:10 UTC
Requires
- symfony/process: 2.6.*
This package is not auto-updated.
Last update: 2026-04-26 02:19:53 UTC
README
Install
install using composer
{
"require": {
"nadimtuhin/archiver": "0.1.*@dev"
}
}
How to use
$process = new Symfony\Component\Process\Process(); $zipper = new NadimTuhin\Archiver\ZipArchiver($process); $zipper->setInputFilename("myfile.txt"); $zipper->setPassword("1234"); $zipper->archive();