Skip to content

Commit

Permalink
adds PHP 8.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
smoench committed Dec 19, 2024
1 parent cd5b7e4 commit 29d681c
Show file tree
Hide file tree
Showing 17 changed files with 867 additions and 1,056 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"ext-filter": "*",
"ext-json": "*",
"ext-simplexml": "*",
Expand Down Expand Up @@ -47,7 +47,10 @@
}
},
"config": {
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "8.1"
}
},
"scripts": {
"benchmark": [
Expand Down Expand Up @@ -79,14 +82,14 @@
"composer install --working-dir=./tools/infection",
"composer install --working-dir=./tools/phpbench",
"composer install --working-dir=./tools/phpstan",
"composer install --working-dir=./tools/psalm"
"composer install --working-dir=./tools/psalm --ignore-platform-req=php"
],
"tools:update": [
"composer update --working-dir=./tools/cs-fixer",
"composer update --working-dir=./tools/infection",
"composer update --working-dir=./tools/phpbench",
"composer update --working-dir=./tools/phpstan",
"composer update --working-dir=./tools/psalm"
"composer update --working-dir=./tools/psalm --ignore-platform-req=php"
],
"post-install-cmd": [
"@tools:install"
Expand Down
Loading

0 comments on commit 29d681c

Please sign in to comment.