Search by

company4-dev / incremental-backups

Jas-n

A library that creates backups of the target repository.

Package info

github.com/company4-dev/incremental-backups

Type:project

pkg:composer/company4-dev/incremental-backups

Statistics

Installs: 375

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

1.26 2026-08-26 10:01 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.