Skip to content
Snippets Groups Projects
Commit 64f7e0d3 authored by Adam G-H's avatar Adam G-H
Browse files

Issue #3344562 by phenaproxima: HEAD is broken due to dependency error with Composer 2.5.4

parent e0a0d0ae
No related branches found
No related tags found
5 merge requests!989Issue #3356804 by phenaproxima: Flag a warning during status check if the...,!733Issue #3344562: HEAD is broken due to dependency error with Composer 2.5.4,!685Issue #3338667: [PP-1] Add build test to test cweaganscomposer-patches end-to-end,!548Issue #3310729: Incorrect documentation link in UI in case of Process error,!106Issue #3247479: Allow LockFileValidator results to carry multiple messages, and improve their text
......@@ -343,17 +343,14 @@ END;
$package['source'],
// Don't notify anybody that we're installing this package.
$package['notification-url'],
// Since Drupal 9 requires PHP 7.3 or later, these polyfills won't be
// Since Drupal 10 requires PHP 8.1 or later, these polyfills won't be
// installed, so we should make sure that they're not required by
// anything.
$package['require']['symfony/polyfill-php72'],
$package['require']['symfony/polyfill-php73']
$package['require']['symfony/polyfill-php73'],
$package['require']['symfony/polyfill-php80'],
$package['require']['symfony/polyfill-php81']
);
// If we're running on Drupal 10, which requires PHP 8.1 or later, this
// polyfill won't be installed, so make sure it's not required.
if (str_starts_with(\Drupal::VERSION, '10.')) {
unset($package['require']['symfony/polyfill-php80']);
}
// Disabling symlinks in the transport options doesn't seem to have an
// effect, so we use the COMPOSER_MIRROR_PATH_REPOS environment variable
// to force mirroring in ::createTestProject().
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment