skcin7 / database-manager
Laravel package to manage your databases (including backups) easily in a Laravel project.
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=5.5.0
- backup-manager/backup-manager: ^1.0
- illuminate/console: ^4.0||^5.0
- illuminate/container: ^4.0||^5.0
- illuminate/support: ^4.0||^5.0
- srmklive/flysystem-dropbox-v2: ^1.0
- symfony/process: ^2.0||^3.0||^4.0
Requires (Dev)
- mockery/mockery: dev-master
- satooshi/php-coveralls: ~0.6
This package is auto-updated.
Last update: 2025-03-17 06:06:37 UTC
README
Laravel package to manage your databases (including backups) easily in a Laravel project.
Note: This package makes use of the framework-agnostic backup-manager/backup-manager package which this one is a dependency of. For more information (including Symfony driver) see that package.
Credit: This package is based on backup-manager/laravel by Shawn McCool and Mitchell van Wijngaarden. Credit to them for their great work.
Table of Contents
- Stability Notice
- Requirements
- Installation
- Scheduling Backups
- Contribution Guidelines
- Maintainers
- License
Stability Notice
It's stable.
I'm actively using this package in my own Laravel projects for managing backups. I would appreciate all feedback/suggestions you may have by opening a GitHub issue.
Requirements
- PHP 5.5
- Laravel
- MySQL support requires
mysqldump
andmysql
command-line binaries - PostgreSQL support requires
pg_dump
andpsql
command-line binaries - Gzip support requires
gzip
andgunzip
command-line binaries
Installation
Use Composer
It's super easy.
-
Run the following command:
composer require skcin7/database-manager
. -
Publish the configuration file.
php artisan vendor:publish --provider="skcin7\DatabaseManager\DatabaseManagerServiceProvider"
After publishing, edit this configuration file (which will be located in config/database-manager.php
) to your specific configuration needs.
This package makes use of your database configurations in config/database.php
. The package manages your database connections listed in that file.
Artisan Commands
After installation, there will be 3 new Artisan commands available in your project which are: database-manager:create-backup
, database-manager:list-backups
, and database-manager:restore-backup
.
Scheduling Backups
Now you can schedule your Laravel database backups (such as a daily backup) using Laravel Task Scheduling.
Inside app/Console/Kernel.php
:
/** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('database-manager:create-backup')->daily(); }
Contribution Guidelines
// TODO
Maintainers
This package is maintained by Nick Morgan.
License
This package is published under the MIT License.