Skip to content

Commit

Permalink
Merge pull request #333 from netglue/php-8.3
Browse files Browse the repository at this point in the history
Add support for PHP 8.3
  • Loading branch information
gsteel committed Sep 18, 2023
2 parents dda5586 + a16a790 commit 2820a07
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .laminas-ci.json
@@ -0,0 +1,5 @@
{
"ignore_php_platform_requirements": {
"8.3": true
}
}
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -35,7 +35,7 @@
}
},
"require": {
"php": "~8.1 || ~8.2",
"php": "~8.1 || ~8.2 || ~8.3",
"ext-json": "*",
"laminas/laminas-escaper": "^2.9",
"php-http/discovery": "^1.18.0",
Expand All @@ -48,17 +48,17 @@
"require-dev": {
"ext-curl": "*",
"doctrine/coding-standard": "^12.0",
"laminas/laminas-diactoros": "^3.0.0",
"laminas/laminas-diactoros": "^3.2.0",
"php-http/cache-plugin": "^1.8",
"php-http/curl-client": "^2.3",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^10.2.2",
"phpunit/phpunit": "^10.3.4",
"psalm/plugin-phpunit": "^0.18.4",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7.2",
"symfony/cache": "^5.4.15 || ^6.3.1",
"symfony/cache": "^5.4.15 || ^6.3.4",
"symfony/options-resolver": "^5.4.11 || ^6.3",
"vimeo/psalm": "^5.13.1"
"vimeo/psalm": "^5.15.0"
},
"scripts": {
"check": [
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

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

3 changes: 3 additions & 0 deletions phpunit.xml.dist
Expand Up @@ -9,6 +9,9 @@
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerErrors="true"
beStrictAboutTestsThatDoNotTestAnything="false"
failOnNotice="true"
failOnDeprecation="true"
failOnWarning="true"
colors="true">
<source>
<include>
Expand Down

0 comments on commit 2820a07

Please sign in to comment.