We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fba40a commit bc6e541Copy full SHA for bc6e541
setup/src/Magento/Setup/Model/MarketplaceManager.php
@@ -162,7 +162,7 @@ public function syncPackagesForInstall()
162
$packageNames = array_column($this->getComposerInformation()->getInstalledMagentoPackages(), 'name');
163
$installPackages = [];
164
foreach ($packagesJsonData['packages'] as $packageName => $package) {
165
- if (isset($package) && is_array($package)) {
+ if (!empty($package) && isset($package) && is_array($package)) {
166
$package = $this->unsetDevVersions($package);
167
ksort($package);
168
$packageValues = array_values($package);
0 commit comments