Skip to content

Commit

Permalink
Merge pull request #544 from netglue/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 Oct 31, 2024
2 parents 5b32ef3 + ac9ae0e commit 9f04559
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 33 deletions.
6 changes: 4 additions & 2 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"ignore_php_platform_requirements": {
"8.3": false
}
"8.3": false,
"8.4": true
},
"backwardCompatibilityCheck": true
}
21 changes: 12 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
},
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"ext-json": "*",
"laminas/laminas-escaper": "^2.9",
"php-http/discovery": "^1.18.0",
Expand All @@ -48,16 +48,19 @@
"require-dev": {
"ext-curl": "*",
"doctrine/coding-standard": "^12.0",
"laminas/laminas-diactoros": "^3.3.0",
"php-http/cache-plugin": "^2.0.0",
"php-http/curl-client": "^2.3.1",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^10.5.9",
"laminas/laminas-diactoros": "^3.5.0",
"php-http/cache-plugin": "^2.0.1",
"php-http/curl-client": "^2.3.3",
"php-http/mock-client": "^1.6.1",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.8.1",
"symfony/cache": "^6.4.2 || ^7.0",
"vimeo/psalm": "^5.20.0"
"symfony/cache": "^6.4.13 || ^7.0",
"vimeo/psalm": "^5.26.1"
},
"conflict": {
"php-http/httplug": "<2.4.1",
"php-http/promise": "<1.3.1"
},
"scripts": {
"check": [
Expand Down
44 changes: 22 additions & 22 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnPhpunitDeprecations="true"
beStrictAboutTestsThatDoNotTestAnything="false"
failOnNotice="true"
failOnDeprecation="true"
failOnWarning="true"
failOnPhpunitDeprecation="true"
colors="true">
<source>
<include>
Expand Down

0 comments on commit 9f04559

Please sign in to comment.