company4-dev / incremental-backups
A library that creates backups of the target repository.
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=8.1
- ext-zip: *
README
Incremental Backups is a package for making .zip incremental back ups
Installation
composer require company4-dev/incremental-backups
Usage
<?php use Company4\Incrementor\Incrementor; $incrementor=(new Incrementor(__DIR__,'archives',false))->run();
Where DIR is the directory being scanned, 'archives' is the name of the directory where the backups will be deposited, and false is whether the back up is incremental or full.