0
Q:

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.
0

New to Communities?

Join the community