PHP code example of schickling / backup

1. Go to this page and download the library: Download schickling/backup 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/ */

    

schickling / backup example snippets



return array(

    // add a backup folder in the app/database/ or your dump folder
    'path' => app_path() . '/database/backup/',

    // add the path to the restore and backup command of mysql
    // this exemple is if your are using MAMP server on a mac
    // on windows: 'C:\\...\\mysql\\bin\\'
    // on linux: '/usr/bin/'
    // trailing slash is 
sh
$ php artisan db:backup
sh
$ php artisan db:restore dump.sql
sh
$ php artisan db:restore
sh
$ php artisan config:publish schickling/backup