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

Popular posts from this blog

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?