PHP code example of sagar-s-bhedodkar / auto-reset

1. Go to this page and download the library: Download sagar-s-bhedodkar/auto-reset 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/ */

    

sagar-s-bhedodkar / auto-reset example snippets


return [
    'default_seeders' => [
        \Database\Seeders\UserSeeder::class,
        \Database\Seeders\ProductSeeder::class
    ],
    'storage_cleanup' => true,
    'cleanup_paths' => ['storage/app/public'],
];
bash
php artisan dev:reset
bash
php artisan vendor:publish --provider="Laravel\AutoReset\Providers\AutoResetServiceProvider" --tag=config
bash
php artisan dev:reset
bash
php artisan dev:reset --storage