Download the PHP package mhmdomer/laravel-database-backup without Composer
On this page you can find all versions of the php package mhmdomer/laravel-database-backup. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mhmdomer/laravel-database-backup
More information about mhmdomer/laravel-database-backup
Files in mhmdomer/laravel-database-backup
Package laravel-database-backup
Short Description Backup your laravel database by a simple artisan command
License MIT
Homepage https://github.com/mhmdomer/laravel-database-backup
Informations about the package laravel-database-backup
Backup your laravel database by a simple artisan command
This package will allow you to backup your laravel app database and you can also choose to send the backup file via email by simply running the command php artisan database:backup
Supported Databases
- [x] Mysql
- [x] Postgresql
- [x] sqlite
Requirements
- If you are using Mysql, make sure
mysqldump
is installed on your system - If you are using Postgresql, make sure
pg_dump
is installed on your system
Installation
You can install the package via composer:
You can publish the config file with:
You can configure the maximum_backup_files
and whether to send an email when a backup occurs as well as specifying the email to send the backup file to
This is the contents of the published config file:
Usage
To create a backup of your database you can run:
The above command is typically run as a schedule command,
for example, you can add the following line in the schedule
function
inside app\Console\Kernel.php
To disable sending a backup email you can add --no-mail
option:
To get the latest backup file:
To get all backup files:
To download the latest backup file:
Listening to Events
Mhmdomer\DatabaseBackup\Events\DatabaseBackupComplete
Event will be fired after each backup success, this event has a string
public property called $path
containing the path of the backup file so you can use it to download the file
Similarly,Mhmdomer\DatabaseBackup\Events\DatabaseBackupFailed
Event will be fired after each backup failure, this event has an Exception
public property called $exception
containing the exception that caused the database backup failure. For example, you can add listeners to listen for these events by editing your EventServiceProvider
like this:
change SendSuccessMessage::class
and LogException::class
to match your own listeners
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- mhmdomer
- All Contributors
License
The MIT License (MIT). Please see License File for more information.