Skip to content

Commit

Permalink
Merge pull request #59 from weierophinney/feature/php-8.4
Browse files Browse the repository at this point in the history
Add support for PHP 8.4
  • Loading branch information
gsteel authored Nov 26, 2024
2 parents a45b585 + ab833e6 commit f6aa569
Show file tree
Hide file tree
Showing 22 changed files with 745 additions and 918 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/.phpcs-cache
/.phpunit.result.cache
/.phpunit.cache
/clover.xml
/coveralls-upload.json
/phpunit.xml
Expand Down
4 changes: 2 additions & 2 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ignore_php_platform_requirements": {
"8.2": true
"8.4": true
}
}
}
13 changes: 9 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.1",
"ext-json": "*",
"laminas/laminas-cli": "^1.7.0",
"laminas/laminas-code": "^4.7.1",
Expand All @@ -48,15 +48,20 @@
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-diactoros": "^3.3",
"mikey179/vfsstream": "^1.6.11",
"mockery/mockery": "^1.6.7",
"mikey179/vfsstream": "^1.6.12",
"mockery/mockery": "^1.6.10",
"php-mock/php-mock-phpunit": "^2.9.0",
"phpdocumentor/reflection-docblock": "^5.3.0",
"phpunit/phpunit": "^9.6.15",
"phpunit/phpunit": "^10.5.35",
"psalm/plugin-mockery": "^0.11.0",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.17.0"
},
"conflict": {
"amphp/amp": "<2.6.4",
"symfony/console": "<5.4.45",
"symfony/string": "<5.4.45"
},
"autoload": {
"psr-4": {
"Mezzio\\Tooling\\": "src/"
Expand Down
Loading

0 comments on commit f6aa569

Please sign in to comment.