Skip to content

Commit

Permalink
[FEAT] Update for v11 & v12
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuf committed Nov 1, 2024
1 parent 3ab98a1 commit c8abcfa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
check-composer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -29,12 +29,12 @@ jobs:
strategy:
matrix:
php-version:
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -43,4 +43,9 @@ jobs:
coverage: none

- name: PHP lint
run: "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"
run: "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"

- name: OSKAR-PHP-CS-Fixer
uses: OskarStark/php-cs-fixer-ga@3.22.0
with:
args: --diff --dry-run
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"Migration"
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/migrations": "^3.0",
"typo3/cms-core": "^10.4 || ^11"
"typo3/cms-core": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit c8abcfa

Please sign in to comment.