| Package Data | |
|---|---|
| Maintainer Username: | mydisha |
| Maintainer Contact: | diastaufik@gmail.com (Dias Taufik Rahman) |
| Package Create Date: | 2016-10-28 |
| Package Last Update: | 2016-10-28 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-03 15:14:39 |
| Package Statistics | |
|---|---|
| Total Downloads: | 43 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Based on open source project https://github.com/larkinwhitaker/laravel-db-backup
Support Laravel Version 5, 5.1, 5.2, 5.3.
Update composer.json and put this package
"mydisha/mds-backup": "dev-master"
Or run following command
composer require mydisha/mds-backup
Next step,
Edit Service Provider, located in config/app.php and put this into 'providers' array.
'providers' => array(
'Mydisha\MdsBackup\DBBackupServiceProvider'
)
Publish the configuration file into your project by run this command
php artisan vendor:publish
Create mysql dump file with default location in /storage/backup_db
php artisan db:backup
php artisan db:backup --database=mysql
To restore the dump mysql file, run this following command
php artisan db:restore [dbname]
To show list of dump file, run this following command
php artisan db:restore
by default this package using datetime as file name, but you can change the filename started with your custome name, ex : laravel-date.sql
you can change at config file mds-backup.php
'initial_name' => '',
https://github.com/larkinwhitaker