company4-dev/incremental-backups

A library that creates backups of the target repository.

Installs: 142

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/company4-dev/incremental-backups

1.21 2026-01-14 13:27 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.