library archiver
Archive files with passwords
nadimtuhin/archiver
Archive files with passwords
- Monday, August 17, 2015
- by nadimtuhin
- Repository
- 1 Watchers
- 2 Stars
- 10 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Zip Archiver
Install
install using composer, (*1)
{
"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();