Because even small websites need to be backed up
Backup script for limited shared hosting
Before installing this, you need to check if you have PHP
and Composer
installed on your computer.
composer require shikiryu/backup
Everything in this library is based on a scenario (or multiple scenarii).
It consists of 2 sections in a JSON file :
- what to backup
- where to backup
You have an example file in app/scenario
.
The first section is backup
(what to backup) and the second transport
More information about how to use scenario
Each possible section has docs in their respective folders
Here is an example code
<?php
include_once 'vendor/autoload.php';
try {
\Shikiryu\Backup\Scenario::launch('backup.json'); // whatever the file name you gave previously
} catch (\Exception $e) {
echo $e->getMessage();
}
Please open an issue for support.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.
Creative Commons Attribution NonCommercial (CC-BY-NC) © Chouchen