Skip to content

Commit

Permalink
Feature/php83 (#33)
Browse files Browse the repository at this point in the history
* chore: update for php 8.3

* chore: update to 11.0.2
  • Loading branch information
tlayh authored Mar 6, 2024
1 parent 2dcd717 commit 7fe7157
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}"
5 changes: 3 additions & 2 deletions code-quality/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
__DIR__ . '/../code-quality',
])
->withPhpSets(
false,
true
true,
false
)
->withSets([
SetList::CODE_QUALITY,
Expand All @@ -47,6 +47,7 @@
SetList::PHP_80,
SetList::PHP_81,
SetList::PHP_82,
SetList::PHP_83,
SetList::PRIVATIZATION,
SetList::TYPE_DECLARATION,
SetList::NAMING,
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 7fe7157

Please sign in to comment.