nadimtuhin / archiver
Archive files with passwords
Installs: 147
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/nadimtuhin/archiver
Requires
- symfony/process: 2.6.*
This package is not auto-updated.
Last update: 2025-10-25 23:26: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();