Answers for "composer dump autoload without terminal"

0

composer dump autoload without terminal

2 Solutions are there :

Solution 1 : if composer is installed on the server then :
=============
You dont need shell access. Artisan includes a dump-autoload function. You can 
just it via a PHP call within your app:

Route::get('/updateapp', function()
{
    \Artisan::call('dump-autoload');
    echo 'dump-autoload complete';
});
----------------------------------------------------------
Solution 2 : 
============
Run composer dump-autoload locally. Then, in your hosting site, you can update 
two files, autoload_classmap.php and autoload_static.php, manually in 
vendor/composer folder. I prefer to copy and paste the added classes from 
local to the hosting server.
Posted by: Guest on November-17-2020

Code answers related to "composer dump autoload without terminal"

Browse Popular Code Answers by Language