Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for PHP 8.4, Upgrade PHPUnit to 10.x, remove Prophecy dependency and improve unit tests #174

Merged
merged 13 commits into from
Nov 14, 2024
2 changes: 1 addition & 1 deletion .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ignore_php_platform_requirements": {
"8.3": true
"8.4": true
}
}
6 changes: 2 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"extra": {
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"container-interop/container-interop": "^1.2",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-http": "^2.15",
Expand All @@ -41,9 +41,7 @@
"require-dev": {
"laminas/laminas-coding-standard": "^2.5.0",
"laminas/laminas-json": "^3.6",
"phpspec/prophecy": "^1.17.0",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpunit/phpunit": "^9.6.13",
"phpunit/phpunit": "^10.5.38",
"webmozart/assert": "^1.11"
},
"suggest": {
Expand Down
Loading