Skip to content

Commit f14781d

Browse files
committed
[RELEASE] Add support for PHP8 and TYPO3 v11 LTS
1 parent 9e3093d commit f14781d

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

.editorconfig

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,12 @@ indent_style = tab
2424
[*.rst]
2525
indent_size = 3
2626

27-
# MD-Files
28-
[*.md]
29-
indent_size = 4
30-
3127
# YAML-Files
3228
[*.{yaml,yml}]
3329
indent_size = 2
3430

3531
# package.json
36-
[{package.json}]
32+
[package.json]
3733
indent_size = 2
3834

3935
# TypoScript

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/composer.lock
22
/public/
33
/vendor/
4-
/.php_cs.cache
4+
/.php-cs-fixer.cache
File renamed without changes.

Classes/TsConfig/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __invoke(ModifyLoadedPageTsConfigEvent $event): void
4646
if (file_exists($tsConfigFile)) {
4747
$fileContents = @file_get_contents($tsConfigFile);
4848
if (!isset($tsConfig['uid_' . $pageRecord['uid']])) {
49-
$tsConfig['uid_' . $pageRecord['uid']] = '';
49+
$tsConfig['uid_' . $pageRecord['uid']] = '';
5050
}
5151
$tsConfig['uid_' . $pageRecord['uid']] .= LF . $fileContents;
5252
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"require-dev": {
27-
"typo3/coding-standards": "^0.2.0",
27+
"typo3/coding-standards": "^0.4.0",
2828
"typo3/tailor": "^1.1"
2929
},
3030
"config": {

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Bolt - An easy TYPO3 integration basis',
55
'description' => 'This package ships best defaults for integrators',
66
'category' => 'fe',
7-
'version' => '2.1.0',
7+
'version' => '2.2.0',
88
'state' => 'stable',
99
'uploadfolder' => false,
1010
'createDirs' => '',

0 commit comments

Comments
 (0)