composer dump-autoload on server code example
Example 1: composer autoload dump
composer dump-autoload
Example 2: 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.