company4-dev/incremental-backups

A library that creates backups of the target repository.

1.2.5 2025-09-08 15:48 UTC

This package is auto-updated.

Last update: 2025-09-08 15:50:34 UTC


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.