PHP code example of mr-wolf-gb / laravel-update-creator

1. Go to this page and download the library: Download mr-wolf-gb/laravel-update-creator 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/ */

    

mr-wolf-gb / laravel-update-creator example snippets


// specify the date since the modified files to copy them into the update pack
php artisan update:create --d="2024-01-01" --v="1.2.0"
// or
php artisan update:create --d 2024-01-01 --v 1.2.0

//by default after creating the update zip file the copied temporary files will be deleted, to disable the deletion of temporary files use:
php artisan update:create --d="2024-01-01" --v="1.2.0" --c="false"
// or
php artisan update:create --d 2024-01-01 --v 1.2.0 --c false
bash
php artisan vendor:publish --tag=config --provider="MrWolfGb\LaravelUpdateCreator\LaravelUpdateCreatorServiceProvider"