generate autodump laravel
$ composer dump-autoload
composer autoload
require __DIR__ . '/vendor/autoload.php';
$log = new Monolog\Logger('name');
$log->pushHandler(new Monolog\Handler\StreamHandler('app.log', Monolog\Logger::WARNING));
$log->addWarning('Foo');
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.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us