cornford / backup
An easy way backup and restore databases in Laravel.
Installs: 25 393
Dependents: 0
Suggesters: 0
Security: 0
Stars: 41
Watchers: 2
Forks: 22
Open Issues: 4
Requires
- php: >=7.2
- illuminate/config: ^6.0 || ^7.0 || ^8.0
- illuminate/console: ^6.0 || ^7.0 || ^8.0
- illuminate/support: ^6.0 || ^7.0 || ^8.0
- symfony/process: ^4.3
Requires (Dev)
- mockery/mockery: ^1.2.4
- phpmd/phpmd: ^2.7
- phpspec/phpspec: ^6.0
- phpunit/phpunit: ^8.4
- squizlabs/php_codesniffer: ^3.5
- dev-master
- v3.2.1
- v3.2.0
- v3.1.0
- v3.0.0
- v2.8.0.x-dev
- v2.8.0
- v2.7.0
- v2.6.0
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.1
- v2.2.0
- v2.1.1.x-dev
- v2.1.1
- v2.1.0
- v2.0.3.x-dev
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.4.0.x-dev
- v1.4.0
- v1.3.0.x-dev
- v1.3.0
- v1.2.1
- v1.2.0.x-dev
- v1.2.0
- v1.1.3.x-dev
- v1.1.3
- v1.1.2.x-dev
- v1.1.2
- v1.1.1.x-dev
- v1.1.1
- v1.1.0
- v1.0.1
- v1.0.0
- dev-develop
This package is auto-updated.
Last update: 2024-11-21 21:26:35 UTC
README
For Laravel 5.x, check version 2.7.0
For Laravel 4.x, check version 1.3.0
Think of Backup as an easy way to backup and restore a database, with command line integration to Laravel's artisan. These include:
Backup::export
Backup::restore
Backup::setBackupEngineInstance
Backup::getBackupEngineInstance
Backup::setBackupFilesystemInstance
Backup::getBackupFilesystemInstance
Backup::setEnabled
Backup::getEnabled
Backup::setPath
Backup::getPath
Backup::setCompress
Backup::getCompress
Backup::setFilename
Backup::getFilename
Backup::getWorkingFilepath
Backup::getRestorationFiles
Backup::getProcessOutput
Installation
Begin by installing this package through Composer. Edit your project's composer.json
file to require cornford/backup
.
"require": {
"cornford/backup": "3.*"
}
Next, update Composer from the Terminal:
composer update
Once this operation completes, the next step is to add the service provider. Open config/app.php
, and add a new item to the providers array.
Cornford\Backup\Providers\BackupServiceProvider::class,
The next step is to introduce the facade. Open config/app.php
, and add a new item to the aliases array.
'Backup' => Cornford\Backup\Facades\BackupFacade::class,
Finally we need to introduce the configuration files into your application.
php artisan vendor:publish --provider="Cornford\Backup\Providers\BackupServiceProvider" --tag=backup
That's it! You're all set to go.
Configuration
You can now configure Backup in a few simple steps. Open config/backup.php
and update the options as needed.
enabled
- Enable Backup.path
- A database backup path, absolute path, or path relative from public directory, a trailing slash is required.filename
- A database export filename to use when exporting databases.compress
- Enable backup compression using gzip. Requires gzencode/gzdecode.processors
- Set the database engines processor location, trailing slash is required.
Usage
It's really as simple as using the Backup class in any Controller / Model / File you see fit with:
Backup::
This will give you access to
- Export
- Restore
- Set Backup Engine Instance
- Get Backup Engine Instance
- Set Backup Filesystem Instance
- Get Backup Filesystem Instance
- Set Enabled
- Get Enabled
- Set Path
- Get Path
- Set Compress
- Get Compress
- Set Filename
- Get Filename
- Get Working Filepath
- Get Restoration Files
- Get Process Output
Export
The export
method allows a database export file to be created in the defined backup location, with an optional filename option.
Backup::export();
Backup::export('database_backup');
Restore
The restore
method allows a database export file to be restored to the database, specifying a full filepath to the file.
Backup::restore('./database_backup.sql');
Set Backup Engine Instance
The setBackupEngineInstance
method allows a custom backup engine instance object to be utilised, implementing the BackupEngineInterface.
Backup::setBackupEngineInstance(new BackupEngineMysql(new BackupProcess(new Symfony\Component\Process\Process), 'database', 'localhost', 3306, 'root', '', []));
Get Backup Engine Instance
The getBackupEngineInstance
method returns the current backup engine instance object.
Backup::getBackupEngineInstance();
Set Backup Filesystem Instance
The setBackupFilesystemInstance
method allows a custom backup filesystem instance object to be utilised, implementing the BackupFilesystemInterface.
Backup::setBackupFilesystemInstance(new BackupFilesystemInstance);
Get Backup Filesystem Instance
The getBackupFilesystemInstance
method returns the current backup filesystem instance object.
Backup::getBackupFilesystemInstance();
Set Enabled
The setEnabled
method allows backup to be switched on or off, specifying a bool for state.
Backup::setEnabled(true);
Backup::setEnabled(false);
Get Enabled
The getEnabled
method returns the current backup enabled status, returning a bool for its state.
Backup::getEnabled();
Set Path
The setPath
method allows backup location path to be set, specifying a relative or absolute path as a string, a trailing slash is required.
Backup::setPath('/path/to/directory/');
Get Path
The getPath
method returns the current absolute backup path in string format.
Backup::getPath();
Set Compress
The setCompress
method allows backup file compression to be switched on or off, specifying a bool for state.
Backup::setCompress(true);
Backup::setCompress(false);
Get Compress
The getCompress
method returns the current compression backup status, returning a bool for its state.
Backup::getCompress();
Set Filename
The setFilename
method allows backup filename to be set, specified in a string format.
Backup::setFilename('database_backup');
Backup::setFilename('backup-' . date('Ymd-His'));
Get Filename
The getFilename
method returns the current set backup filename in a string format.
Backup::getFilename();
Get Working Filepath
The getWorkingFilepath
method returns the current set working filepath of the current item being processed in a string format.
Backup::getWorkingFilepath();
Get Restoration Files
The getRestorationFiles
method returns an array containing all of the restoration file filepaths within a give path, an optional absolute path can be set as a string.
Backup::getRestorationFiles();
Backup::getRestorationFiles('/path/to/directory/');
License
Backup is open-sourced software licensed under the MIT license