Database Dumper

Installs: 824

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Type:project

v0.1.8 2020-03-25 17:20 UTC

This package is auto-updated.

Last update: 2022-10-05 18:35:30 UTC


README

DB Backup : only tested with MySQL at the moment.

Install

Via Composer

composer require sebastienfontaine/dumper

Publish config file

php artisan dumper:publish --name=backup-name

Usage

Configure your backup by editing the config file. Test it by running

php artisan dumper:backup

If you want to use schedule functionality, be sure to configure your cron key in the config file. Then edit your Console/Kernel.php by adding

protected function schedule(Schedule $schedule)
{
    DumperScheduler::schedule($schedule);
}

License

The MIT License (MIT). Please see License File for more information.