| Package Data | |
|---|---|
| Maintainer Username: | bradcornford |
| Maintainer Contact: | me@bradleycornford.co.uk (Bradley Cornford) |
| Package Create Date: | 2015-06-26 |
| Package Last Update: | 2022-06-07 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 03:02:13 |
| Package Statistics | |
|---|---|
| Total Downloads: | 25,569 |
| Monthly Downloads: | 18 |
| Daily Downloads: | 0 |
| Total Stars: | 40 |
| Total Watchers: | 1 |
| Total Forks: | 21 |
| Total Open Issues: | 4 |
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
Begin by installing this package through Composer. Edit your project's composer.json file to require cornford/backup.
"require": {
"cornford/backup": "2.*"
}
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',
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\Backup',
Finally we need to introduce the configuration files into your application.
php artisan vendor:publish --provider="Cornford\\Backup\\Providers\\BackupServiceProvider"
That's it! You're all set to go.
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.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
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');
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');
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', '', []));
The getBackupEngineInstance method returns the current backup engine instance object.
Backup::getBackupEngineInstance();
The setBackupFilesystemInstance method allows a custom backup filesystem instance object to be utilised, implementing the BackupFilesystemInterface.
Backup::setBackupFilesystemInstance(new BackupFilesystemInstance);
The getBackupFilesystemInstance method returns the current backup filesystem instance object.
Backup::getBackupFilesystemInstance();
The setEnabled method allows backup to be switched on or off, specifying a boolean for state.
Backup::setEnabled(true);
Backup::setEnabled(false);
The getEnabled method returns the current backup enabled status, returning a boolean for its state.
Backup::getEnabled();
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/');
The getPath method returns the current absolute backup path in string format.
Backup::getPath();
The setCompress method allows backup file compression to be switched on or off, specifying a boolean for state.
Backup::setCompress(true);
Backup::setCompress(false);
The getCompress method returns the current compression backup status, returning a boolean for its state.
Backup::getCompress();
The setFilename method allows backup filename to be set, specified in a string format.
Backup::setFilename('database_backup');
Backup::setFilename('backup-' . date('Ymd-His'));
The getFilename method returns the current set backup filename in a string format.
Backup::getFilename();
The getWorkingFilepath method returns the current set working filepath of the current item being processed in a string format.
Backup::getWorkingFilepath();
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/');
Backup is open-sourced software licensed under the MIT license