“Laravel PackageManifest.php: Índice indefinido: Nome” Respostas de código

Em PackageManifest.php Linha 131: Índice indefinido: Nome Laravel 7

composer self-update --stable
Vivacious Vole

Laravel PackageManifest.php: Índice indefinido: Nome

//THIS IS TEMPORARY FIX IF YOU DONOT WANT TO MODIFY COMPOSER.JSON OR COMPOSER.LOCK
Try this, it worked for me, in the following file:

vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php
Find this line and comment it:

$packages = json_decode($this->files->get($path), true);
Add two new lines after the above commented line:

$installed = json_decode($this->files->get($path), true);
$packages = $installed['packages'] ?? $installed;
Outrageous Ocelot

Respostas semelhantes a “Laravel PackageManifest.php: Índice indefinido: Nome”

Perguntas semelhantes a “Laravel PackageManifest.php: Índice indefinido: Nome”

Mais respostas relacionadas para “Laravel PackageManifest.php: Índice indefinido: Nome” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código