Answers for "composer clear whole cache"

PHP
3

clear composer cache

composer clearcache
//Then autoload composer
composer dump-autoload
Posted by: Guest on April-22-2020
0

clear cache without using composer in laravel 8

Route::get('/clear-cache', function() {
    $exitCode = Artisan::call('cache:clear');
    // return what you want
});
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language