torann/database-backup
Database backup package for Laravel.
Maintainers
Requires
- php: >=5.5.9
- illuminate/console: ~5.0
- illuminate/support: ~5.0
- symfony/process: ~3.1
Requires (Dev)
- mockery/mockery: ^0.9.4
- phpunit/phpunit: ^4.8
Suggests
None
Provides
None
Conflicts
None
Replaces
None
BSD 2-Clause 3a171fe12deee06ce189304040bbae8df66c941c
- Daniel Stainback <torann.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-08 13:16:39 UTC
README
👁 Latest Stable Version
👁 Total Downloads
👁 Patreon donate button
👁 Donate weekly to this project using Gratipay
👁 Donate to this project using Flattr
👁 Donate to this project using Paypal
Uncomplicated database backup package for Laravel 5.
Installation
Composer
From the command line run:
$ composer require torann/database-backup
Laravel
Once installed you need to register the service provider with the application. Open up config/app.php and find the providers key.
'providers' => [ Torann\DatabaseBackup\DatabaseBackupServiceProvider::class, ]
Lumen
For Lumen register the service provider in bootstrap/app.php.
$app->register(Torann\DatabaseBackup\DatabaseBackupServiceProvider::class);
Publish the configurations
Run this on the command line from the root of your project:
$ php artisan vendor:publish --provider="Torann\DatabaseBackup\DatabaseBackupServiceProvider" --tag=config
A configuration file will be publish to config/database-backups.php.
Commands
php artisan db:backup
Dump the default database.
Change Log
v0.1.0
- First release
