Skip to content
Snippets Groups Projects

Issue #3368741: Drush build test symlinks drush and only passes because it loads classes not in build test project

Merged Issue #3368741: Drush build test symlinks drush and only passes because it loads classes not in build test project
3 unresolved threads
3 unresolved threads
Files
2
@@ -437,6 +437,15 @@ END;
],
'autoload' => $package_info['autoload'] ?? [],
];
if (isset($package_info['require'])) {
unset(
$package_info['require']['symfony/polyfill-php73'],
$package_info['require']['symfony/polyfill-php74'],
$package_info['require']['symfony/polyfill-php80'],
$package_info['require']['symfony/polyfill-php81'],
);
$packages[$name][$version]['require'] = $package_info['require'];
}
// Composer plugins are loaded and activated as early as possible, and
// they must have a `class` key defined in their `extra` section, along
// with a dependency on `composer-plugin-api` (plus any other real
// runtime dependencies).
if ($packages[$name][$version]['type'] === 'composer-plugin') {
$packages[$name][$version]['require'] = $package_info['require'] ?? [];
$packages[$name][$version]['extra'] = $package_info['extra'] ?? [];
}
}
Loading