Download the PHP package codecheef/backup without Composer
On this page you can find all versions of the php package codecheef/backup. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download codecheef/backup
More information about codecheef/backup
Files in codecheef/backup
Download codecheef/backup
More information about codecheef/backup
Files in codecheef/backup
Vendor codecheef
Package backup
Short Description This package will take backup you mysql database automatically via cron job.
License MIT
Package backup
Short Description This package will take backup you mysql database automatically via cron job.
License MIT
Please rate this library. Is it a good library?
Informations about the package backup
Laravel Database Backup Package
This package will take backup your mysql database automatically via cron job.
Installing laravel-backup
The recommended way to install laravel-backup package using composer
composer require codecheef/backup
If your Laravel project version is less than 5 then
Add the service provider to config/app.php
'providers' => [
Codecheef\Backup\BackupServiceProvider::class,
],
To test this package create a 'database' directory inside your public folder.
Creating Directory
/public/database
Then run below command to test it
php artisan backup:run
Setup Cron
To run it via cron job do it inside your app/Console/Kernel.php
protected $commands = [
BackupCommand::class
];
and now call it via shceduller that when you want to run it, like daily weekly etc.
All versions of backup with dependencies
PHP Build Version
Package Version
No informations.
The package codecheef/backup contains the following files
Loading the files please wait ....