Laravel Helper package for backing up Mysql database specified in env file and saving it to a folder
nobledsmarts/db-sentry is a Laravel package for laravel helper package for backing up mysql database specified in env file and saving it to a folder.
It currently has 2 GitHub stars and 101 downloads on Packagist (latest version 1.0.0).
Install it with composer require nobledsmarts/db-sentry.
Discover more Laravel packages by nobledsmarts
or browse all Laravel packages to compare alternatives.
Last updated
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
You can install the package via composer:
composer require nobledsmarts/db-sentry
use Illuminate\Support\Facades\Storage
$dbSentry = new Nobledsmarts\DBSentry\DBSentry();
$backupContent = $dbSentry->getBackUp();
$backupFileName = 'backup'. date('Y-m-d=H-i-s') . '.sql';
Storage::put($backupFileName, $backupContent);
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.