File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 21
21
"symfony/phpunit-bridge" : " ^4.4.12|^5.0|^6.0" ,
22
22
"symfony/process" : " ^4.4|^5.0|^6.0"
23
23
},
24
+ "conflict" : {
25
+ "composer/semver" : " <1.7.2"
26
+ },
24
27
"autoload" : {
25
28
"psr-4" : {
26
29
"Symfony\\ Flex\\ " : " src"
Original file line number Diff line number Diff line change @@ -391,6 +391,10 @@ public function recordOperations(InstallerEvent $event)
391
391
$ versionParser = new VersionParser ();
392
392
$ packages = [];
393
393
foreach ($ this ->lock ->all () as $ name => $ info ) {
394
+ if ('9999999.9999999 ' === $ info ['version ' ]) {
395
+ // Fix invalid versions found in some lock files
396
+ $ info ['version ' ] = '99999.9999999 ' ;
397
+ }
394
398
$ packages [] = new Package ($ name , $ versionParser ->normalize ($ info ['version ' ]), $ info ['version ' ]);
395
399
}
396
400
You can’t perform that action at this time.
0 commit comments