Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nadimtuhin/archiver

php Zip Archiver with password
https://github.com/nadimtuhin/archiver

Last synced: 25 days ago
JSON representation

php Zip Archiver with password

Awesome Lists containing this project

README

        

# Zip Archiver

## Install
install using composer
```json
{
"require": {
"nadimtuhin/archiver": "0.1.*@dev"
}
}
```

## How to use
```php
$process = new Symfony\Component\Process\Process();
$zipper = new NadimTuhin\Archiver\ZipArchiver($process);
$zipper->setInputFilename("myfile.txt");
$zipper->setPassword("1234");
$zipper->archive();
```