Archive
Create zip archive with file/folder.
Installation
Code

MarquandT
Ethical Hacker ~ Web Developper ~ File Hosting Provider ~ Crypto Enthusiast ~ Automation Expert Bitcoin donation: 32Uu4NKGnxSPC7UukYXVyRHwbppbQpKVki
Create zip archive with file/folder.
composer require mediashare/kernel
<?php
// ./index.php
require 'vendor/autoload.php';
use Mediashare\Kernel\Kernel;
$kernel = new Kernel();
$kernel->run();
$archive = $kernel->get('Archive');
$archive->setSource(__DIR__.'/images');
$archive->setDestination(__DIR__.'/backup.zip');
$archive->run();
Ethical Hacker ~ Web Developper ~ File Hosting Provider ~ Crypto Enthusiast ~ Automation Expert Bitcoin donation: 32Uu4NKGnxSPC7UukYXVyRHwbppbQpKVki