Skip to content

Commit

Permalink
Merge pull request #25 from patchlevel/php84
Browse files Browse the repository at this point in the history
add php 8.4 support, drop php 8.1
  • Loading branch information
DavidBadura authored Jan 28, 2025
2 parents a8d4992 + 9922b04 commit 1c93b9f
Show file tree
Hide file tree
Showing 9 changed files with 1,036 additions and 635 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
- "lowest"
- "highest"
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"
include:
- dependencies: "locked"
php-version: "8.3"
php-version: "8.4"
operating-system: "ubuntu-latest"
- dependencies: "locked"
php-version: "8.3"
php-version: "8.4"
operating-system: "windows-latest"

steps:
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,20 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"symfony/event-dispatcher": "^5.4.26|^6.4.0|^7.0.0"
},
"require-dev": {
"cspray/phinal": "^2.0.0",
"infection/infection": "^0.27.8",
"infection/infection": "^0.29.10",
"patchlevel/coding-standard": "^1.3.0",
"phpbench/phpbench": "^1.2.15",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^1.10.49",
"phpunit/phpunit": "^10.5.2",
"phpstan/phpstan": "^2.1.2",
"phpunit/phpunit": "^11.5.3",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.34.0",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"vimeo/psalm": "^5.17.0"
"vimeo/psalm": "^6.0.0"
},
"config": {
"preferred-install": {
Expand Down
Loading

0 comments on commit 1c93b9f

Please sign in to comment.