Skip to content
Snippets Groups Projects
Commit 3d864ca1 authored by Ted Bowman's avatar Ted Bowman
Browse files

only unset php 7 and 8 polyfills

parent 266655e7
No related branches found
No related tags found
No related merge requests found
......@@ -439,7 +439,8 @@ END;
];
if (isset($package_info['require'])) {
foreach (array_keys($package_info['require']) as $package_name) {
if (str_starts_with($package_name, 'symfony/polyfill-')) {
// Do not require polyfill packages for PHP 7 or 8.
if (str_starts_with($package_name, 'symfony/polyfill-php7') || str_starts_with($package_name, 'symfony/polyfill-php8')) {
unset($package_info['require'][$package_name]);
}
}
......
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