PHP code example of olssonm / laravel-backup-shield

1. Go to this page and download the library: Download olssonm/laravel-backup-shield library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

olssonm / laravel-backup-shield example snippets

 artisan vendor:publish --provider="Olssonm\BackupShield\BackupShieldServiceProvider"

// Default configuration; backup-shield.php
return [
    'password' => env('APP_KEY'),
    'encryption' => \Olssonm\BackupShield\Encryption::ENCRYPTION_DEFAULT
];