Clear Composer Cache Code Example
Example 1: clear composer cache
composer clearcache //Then autoload composer composer dump-autoload
Example 2: composer remove cache
composer clearcache #You can also use composer clear-cache #which is an alias for clearcache.
Example 3: composer clear cache
$ composer clearcache
Example 4: clear cache without using composer in laravel 8
Route::get('/clear-cache', function() { $exitCode = Artisan::call('cache:clear'); // return what you want });
Comments
Post a Comment