“Laravel PackageManifest.Php: Index non défini: Nom” Réponses codées

Dans packageManifest.php Ligne 131: Index indéfini: Nom Laravel 7

composer self-update --stable
Vivacious Vole

Laravel PackageManifest.Php: Index non défini: Nom

//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

Réponses similaires à “Laravel PackageManifest.Php: Index non défini: Nom”

Questions similaires à “Laravel PackageManifest.Php: Index non défini: Nom”

Plus de réponses similaires à “Laravel PackageManifest.Php: Index non défini: Nom” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code