Skip to content

Commit 852d883

Browse files
committed
[BUGFIX] Add TYPO3 v14 major version
1 parent daf0e3a commit 852d883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Repository/MajorVersionRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ private function formatVersion(float|int|string $version): string
309309
{
310310
$version = (string)$version;
311311
if (!str_contains($version, '.')) {
312-
if (\in_array((int)$version, [7, 8, 9, 10, 11, 12, 13], true)) {
312+
if (\in_array((int)$version, [7, 8, 9, 10, 11, 12, 13, 14], true)) {
313313
$version .= '.0000';
314314
} else {
315315
$version .= '.0';

0 commit comments

Comments
 (0)