Search
 
SCRIPT & CODE EXAMPLE
 

PHP

clear composer cache

composer clearcache
//Then autoload composer
composer dump-autoload
Comment

composer remove cache

composer clearcache

#You can also use 

composer clear-cache

#which is an alias for clearcache.
 
Comment

composer clear cache

$ composer clearcache
Comment

composer require no cache

composer require VENDOR/PACKAGE --no-cache
Comment

Composer clear cache

rm -rf ~/.composer/cache
Comment

clear cache without using composer in laravel 8

Route::get('/clear-cache', function() {
    $exitCode = Artisan::call('cache:clear');
    // return what you want
});
Comment

PREVIOUS NEXT
Code Example
Php :: Install the php_mysql extensions 
Php :: symfony request get all parameters 
Php :: count() parameter must be an array or an object that implements countable laravel 
Php :: pdo get row count 
Php :: how to return variable from transaction laravel 
Php :: using laravel back function on blade 
Php :: laravel add utility class 
Php :: smtp server xampp 
Php :: difference between fetch assoc and fetch array or object php 
Php :: laravel eloquent get last record 
Php :: get category post in wordpress 
Php :: migration status php 
Php :: how to install multiple php versions ubuntu 
Php :: how to validate use unique in laravel 8 controller 
Php :: global laravel request() 
Php :: ubuntu set alternatives 
Php :: laravel instal 
Php :: Auth log out laravel 
Php :: toarray php 
Php :: acf gallery 
Php :: laravel create migration 
Php :: laravel nigerian time zone 
Php :: string to int php 
Php :: check if user has role twig 
Php :: assign php array into javascript 
Php :: save array in mysql php 
Php :: php random string 
Php :: php array longest string 
Php :: file to binary php 
Php :: laravel run seeder enter timestamps 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =