From 704492d621fe59f2f549ae386542d602ae055184 Mon Sep 17 00:00:00 2001 From: "thomas.layh" Date: Wed, 6 Mar 2024 10:27:25 +0100 Subject: [PATCH 1/2] chore: update for php 8.3 --- .github/workflows/ci.yml | 4 ++-- code-quality/rector.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8727203..671d751 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: typo3DatabaseUsername: root - name: Tests for Scrutinizer with Coverage - if: matrix.typo3 == '^11.5' && matrix.php == '8.0' + if: matrix.typo3 == '^11.5' && matrix.php == '8.3' run: | composer test:coverage env: @@ -72,6 +72,6 @@ jobs: - name: Upload coverage results to Scrutinizer uses: sudo-bot/action-scrutinizer@latest - if: matrix.typo3 == '^11.5' && matrix.php == '8.0' + if: matrix.typo3 == '^11.5' && matrix.php == '8.3' with: cli-args: "--format=php-clover .Build/reports/php_all_tests/coverage_clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}" diff --git a/code-quality/rector.php b/code-quality/rector.php index ccd38d6..18b1372 100644 --- a/code-quality/rector.php +++ b/code-quality/rector.php @@ -35,8 +35,8 @@ __DIR__ . '/../code-quality', ]) ->withPhpSets( - false, - true + true, + false ) ->withSets([ SetList::CODE_QUALITY, @@ -47,6 +47,7 @@ SetList::PHP_80, SetList::PHP_81, SetList::PHP_82, + SetList::PHP_83, SetList::PRIVATIZATION, SetList::TYPE_DECLARATION, SetList::NAMING, From fddc2f46a915d26ca15adc62b8ebe57dc10d07fd Mon Sep 17 00:00:00 2001 From: "thomas.layh" Date: Wed, 6 Mar 2024 10:30:04 +0100 Subject: [PATCH 2/2] chore: update to 11.0.2 --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index 37e4f55..ba422ed 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -17,7 +17,7 @@ 'modify_tables' => '', 'clearCacheOnLoad' => 0, 'lockType' => '', - 'version' => '11.0.1', + 'version' => '11.0.2', 'constraints' => [ 'depends' => [ 'typo3' => '11.5.0-11.5.99',