This reset package lets you take a snapshot of your laravel application and periodic reset to that snapshot
beeldvoerders/laravel-reset is a Laravel package for this reset package lets you take a snapshot of your laravel application and periodic reset to that snapshot.
It currently has 0 GitHub stars and 329 downloads on Packagist.
Install it with composer require beeldvoerders/laravel-reset.
Discover more Laravel packages by beeldvoerders
or browse all Laravel packages to compare alternatives.
Last updated
This Laravel package lets you restore your application to a previous declared state. This is helpfull for demo applications where you set your users free but want to reset the state, for example, every midnight.
First require it in composer:
composer require beeldvoerders/laravel-reset
Next, add the ResetServiceProvider class to your config/app.php providers array:
Beeldvoerders\Reset\ResetServiceProvider::class
You can specify which directories has to reset in the reset config file. By default this is the storage/app directory. If you want to change these config settings, publish them first to your application:
php artisan vendor:publish --provider="Beeldvoerders\Reset\ResetServiceProvider"
If you set the config right, you have to create the back-up on which the restore is based:
php artisan reset:create
Once the back-up is created, test it by making some changes to your application and reset the state:
php artisan reset
If you want to reset your application once every midnight, then you should add the Reset command to the Laravel scheduler:
$schedule->command('reset')
->daily();
If you discover a bug, wants to participate or just have a question, feel free to contact me at [email protected].
This package is open-sourced software licensed under the MIT license.