This Laravel 5 package creates a backup of your application. The backup is a zipfile that contains all files in the directories you specify along with a dump of your database. The backup can be stored on any of the filesystems you have configured in Laravel 5.
Feeling paranoid about backups? No problem! You can backup your application to multiple filesystems at once.
Once installed taking a backup of your files and databases is very easy. Just issue this artisan command:
php artisan backup:run
Spatie is a webdesign agency in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
To create a dump of a MySQL-db this package uses the mysqldump
-binary. Make sure it is installed on your system.
You can install this package via composer using:
composer require spatie/laravel-backup
You must also install this service provider.
// config/app.php
'providers' => [
...
'Spatie\Backup\BackupServiceProvider',
...
];
To publish the config file to app/config/laravel-backup.php
run:
php artisan vendor:publish --provider="Spatie\Backup\BackupServiceProvider"
This is the contents of the configuration. These options should be self-explanatory.
return [
'source' => [
'files' => [
/*
* The list of directories that should be part of the backup. You can
* specify individual files as well.
*/
'include' => [
base_path(),
],
/*
* These directories will be excluded from the backup.
* You can specify individual files as well.
*/
'exclude' => [
storage_path(),
base_path('vendor'),
],
],
/*
* Should the database be part of the back up.
*/
'backup-db' => true,
],
'destination' => [
/*
* The filesystem(s) you on which the backups will be stored. Choose one or more
* of the filesystems you configured in app/config/filesystems.php
*/
'filesystem' => ['local'],
/*
* The path where the backups will be saved. This path
* is relative to the root you configured on your chosen
* filesystem(s).
*
* If you're using the local filesystem a .gitignore file will
* be automatically placed in this directory so you don't
* accidentally end up committing these backups.
*/
'path' => 'backups',
/*
* By default the backups will be stored as a zipfile with a
* timestamp as the filename. With these options You can
* specify a prefix and a suffix for the filename.
*/
'prefix' => '',
'suffix' => '',
],
'clean' => [
/*
* The clean command will remove all backups on all configured filesystems
* that are older then this amount of days.
*/
'maxAgeInDays' => 90,
],
'mysql' => [
/*
* The path to the mysqldump binary. You can leave this empty
* if the binary is installed in the default location.
*/
'dump_command_path' => '',
/*
* If your server supports it you can turn on extended insert.
* This will result in a smaller dump file and speeds up the backup process.
*
* See: https://dev.mysql.com/doc/refman/5.1/en/mysqldump.html#option_mysqldump_extended-insert
*/
'useExtendedInsert' => false,
/*
* If the dump of the db takes more seconds that the specified value,
* it will abort the backup.
*/
'timeoutInSeconds' => 60,
],
];
Use this command start the backup and store the zipfile to the filesystem(s) you specified:
php artisan backup:run
A zip-file, containing all files in the directories you specified along the dump of your database, will be created on the filesystem(s) you specified in the config-file.
If you want to take a backup of only the db (without all other files that you might have configured) you can use this command:
php artisan backup:run --only-db
Need only the files without the db? Sure:
php artisan backup:run --only-files
Just don't use the only-files
and only-db
options at the same time and you're fine.
You can also manually specify a prefix and suffix to be used in the filename of the zipfile.
php artisan backup:run --prefix="backup-" --suffix="-manual".
These arguments take precedence over the prefix and suffix specified in the config file.
This command will remove all zip-files that are older than the amount of days specified in the config file:
php artisan backup:clean
The clean up will happen on all configured filesystems.
Run the tests with:
vendor/bin/phpunit
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Spatie is a webdesign agency in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
The MIT License (MIT). Please see License File for more information.