Skip to content

Commit 16a0833

Browse files
authored
Merge pull request hoogi91#568 from hoogi91/feature/php83-support
Add PHP 8.3 support
2 parents 299fb57 + 0a93a28 commit 16a0833

10 files changed

Lines changed: 977 additions & 831 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 40 deletions
This file was deleted.

.devcontainer/postCreate.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.2"
18+
- "8.3"
1919
operating-system:
2020
- "ubuntu-latest"
2121

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.2"
18+
- "8.3"
1919
operating-system:
2020
- "ubuntu-latest"
2121

.github/workflows/phpunit.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- "lowest"
2525
- "highest"
2626
php-version:
27+
- "8.3"
2728
- "8.2"
2829
- "8.1"
2930
operating-system:
@@ -32,7 +33,7 @@ jobs:
3233
- "false"
3334
include:
3435
- dependencies: "locked"
35-
php-version: "8.2"
36+
php-version: "8.3"
3637
operating-system: "ubuntu-latest"
3738
coverage: "true"
3839

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
dependencies:
1818
- "locked"
1919
php-version:
20-
- "8.2"
20+
- "8.3"
2121
operating-system:
2222
- "ubuntu-latest"
2323

Classes/Form/Element/DataInputElement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct(NodeFactory $nodeFactory, array $data)
4646

4747
$this->view = GeneralUtility::makeInstance(StandaloneView::class);
4848
$this->view->setTemplatePathAndFilename($this->getTemplatePath());
49-
$this->view->assign('inputSize', (int)$this->config['size'] ?: 0);
49+
$this->view->assign('inputSize', (int)($this->config['size'] ?? 0));
5050
}
5151

5252
/**

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Spreadsheets | TYPO3 | PHP | Supported |
66
| ------------ | ----------- |-----------|-------------------------------|
7-
| dev-master | 12.4 | 8.2 | :white_check_mark: (unstable) |
8-
| 4.x | 11.5 - 12.4 | 8.1 - 8.2 | :white_check_mark: |
7+
| dev-master | 12.4 | 8.3 | :white_check_mark: (unstable) |
8+
| 4.x | 11.5 - 12.4 | 8.1 - 8.3 | :white_check_mark: |
99
| 3.x | 10.4 - 11.5 | 7.3 - 8.1 | :white_check_mark: (security) |
1010
| 2.x | 10.4 | 7.2 - 7.4 | :x: |
1111
| 1.x | 8.7 - 9.5 | 7.0 - 7.2 | :x: |

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "~8.1.0 || ~8.2.0",
21+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
2222
"ext-json": "*",
2323
"ext-mbstring": "*",
2424
"phpoffice/phpspreadsheet": "^1.29 || ^2.0",

0 commit comments

Comments
 (0)