company4-dev/incremental-backups

A library that creates backups of the target repository.

Maintainers

Package info

github.com/company4-dev/incremental-backups

Type:project

pkg:composer/company4-dev/incremental-backups

Statistics

Installs: 175

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

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.