File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 66 "ergebnis/composer-normalize" : " *" ,
77 "maglnet/composer-require-checker" : " ^3.8" ,
88 "mi-schi/phpmd-extension" : " ^4.3" ,
9- "php-cs-fixer/shim" : " ^3.14.4 " ,
9+ "php-cs-fixer/shim" : " ^3.49.0 " ,
1010 "phpmd/phpmd" : " ^2.13"
1111 },
1212 "config" : {
Original file line number Diff line number Diff line change 1111
1212namespace PhpCsFixer \PhpunitConstraintIsIdenticalString \Constraint ;
1313
14- if (version_compare (\PHPUnit \Runner \Version::id (), '7.0.0 ' ) < 0 ) {
14+ use PHPUnit \Runner \Version ;
15+
16+ if (version_compare (Version::id (), '7.0.0 ' ) < 0 ) {
1517 class_alias (IsIdenticalStringForV5::class, IsIdenticalString::class);
16- } elseif (version_compare (\ PHPUnit \ Runner \ Version::id (), '8.0.0 ' ) < 0 ) {
18+ } elseif (version_compare (Version::id (), '8.0.0 ' ) < 0 ) {
1719 class_alias (IsIdenticalStringForV7::class, IsIdenticalString::class);
18- } elseif (version_compare (\ PHPUnit \ Runner \ Version::id (), '9.0.0 ' ) < 0 ) {
20+ } elseif (version_compare (Version::id (), '9.0.0 ' ) < 0 ) {
1921 class_alias (IsIdenticalStringForV8::class, IsIdenticalString::class);
2022} else {
2123 class_alias (IsIdenticalStringForV9::class, IsIdenticalString::class);
You can’t perform that action at this time.
0 commit comments