Skip to content

Commit

Permalink
Add PHP 8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
hoogi91 committed Jul 21, 2024
1 parent 5bbd9ff commit 4862822
Show file tree
Hide file tree
Showing 10 changed files with 1,207 additions and 1,135 deletions.
40 changes: 0 additions & 40 deletions .devcontainer/devcontainer.json

This file was deleted.

18 changes: 0 additions & 18 deletions .devcontainer/postCreate.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- "lowest"
- "highest"
php-version:
- "8.3"
- "8.2"
- "8.1"
operating-system:
Expand All @@ -32,7 +33,7 @@ jobs:
- "false"
include:
- dependencies: "locked"
php-version: "8.2"
php-version: "8.3"
operating-system: "ubuntu-latest"
coverage: "true"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion Classes/Form/Element/DataInputElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function __construct(NodeFactory $nodeFactory, array $data)

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

/**
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Spreadsheets | TYPO3 | PHP | Supported |
| ------------ | ----------- |-----------|-------------------------------|
| dev-master | 12.4 | 8.2 | :white_check_mark: (unstable) |
| 4.x | 11.5 - 12.4 | 8.1 - 8.2 | :white_check_mark: |
| dev-master | 12.4 | 8.3 | :white_check_mark: (unstable) |
| 4.x | 11.5 - 12.4 | 8.1 - 8.3 | :white_check_mark: |
| 3.x | 10.4 - 11.5 | 7.3 - 8.1 | :white_check_mark: (security) |
| 2.x | 10.4 | 7.2 - 7.4 | :x: |
| 1.x | 8.7 - 9.5 | 7.0 - 7.2 | :x: |
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-mbstring": "*",
"phpoffice/phpspreadsheet": "^1.29",
Expand Down
Loading

0 comments on commit 4862822

Please sign in to comment.