Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow PHP 8.1 #3

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.2', '8.3' ]
php: [ '8.1', '8.2', '8.3' ]
typo3: [ '11', '12' ]
steps:
- name: Setup PHP with PECL extension
Expand Down
6 changes: 3 additions & 3 deletions Classes/DataProcessing/RelationProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
use TYPO3\CMS\Frontend\ContentObject\DataProcessorInterface;

final readonly class RelationProcessor implements DataProcessorInterface
final class RelationProcessor implements DataProcessorInterface
{
public function __construct(
private ConnectionPool $connectionPool,
private ContentDataProcessor $contentDataProcessor
private readonly ConnectionPool $connectionPool,
private readonly ContentDataProcessor $contentDataProcessor
) {
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
],
"type": "typo3-cms-extension",
"require": {
"php": "~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"typo3/cms-core": "^11.5 || ^12.0",
"typo3/cms-frontend": "^11.5 || ^12.0"
},
Expand Down
Loading