You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 6.4:
[Form] Fix merging form data and files (ter)
[Intl] Update the ICU data to 74.1
[Scheduler] Use MockClock
[AssetMapper] Fixing memory bug where we stored way more file content than needed
[AssetMapper] jsdelivr "no version" import syntax
[HtmlSanitizer] Consider `width` attribute as safe
[DoctrineBridge] Fix exception message
[Security][Validator] Missing translations for Luxembourgish
Copy file name to clipboardExpand all lines: Command/VersionProblemCommandTrait.php
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,6 @@ private function renderVersionProblems(ImportMapVersionChecker $importMapVersion
29
29
continue;
30
30
}
31
31
32
-
if (null === $problem->requiredVersionConstraint) {
33
-
$output->writeln(sprintf('[warning] <info>%s</info> appears to import <info>%s</info> but this is not listed as a dependency of <info>%s</info>. This is odd and could be a misconfiguration of that package.', $problem->packageName, $problem->dependencyPackageName, $problem->packageName));
34
-
35
-
continue;
36
-
}
37
-
38
32
$output->writeln(sprintf('[warning] <info>%s</info> requires <info>%s</info>@<comment>%s</comment> but version <comment>%s</comment> is installed.', $problem->packageName, $problem->dependencyPackageName, $problem->requiredVersionConstraint, $problem->installedVersion));
0 commit comments