Skip to content

Commit

Permalink
PHP 8.4 support added (#81)
Browse files Browse the repository at this point in the history
Signed-off-by: Raj Mohan <[email protected]>
  • Loading branch information
cod43156 authored Dec 9, 2024
1 parent 59234f2 commit f7d2830
Show file tree
Hide file tree
Showing 16 changed files with 991 additions and 810 deletions.
4 changes: 2 additions & 2 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
}
],
"ignore_php_platform_requirements": {
"8.3": true
"8.4": true
}
}
}
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"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",
"laminas/laminas-code": "^4.7.1",
"laminas/laminas-stdlib": "^3.3.1"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^9.5.5",
"psalm/plugin-phpunit": "^0.18.0",
"vimeo/psalm": "^4.6.4"
"laminas/laminas-coding-standard": "~3.0.1",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
Expand Down
1,053 changes: 574 additions & 479 deletions composer.lock

Large diffs are not rendered by default.

18 changes: 14 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
convertDeprecationsToExceptions="true"
colors="true">
colors="true"
cacheDirectory=".phpunit.cache"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
failOnWarning="true"
failOnDeprecation="true"
failOnNotice="true"
>
<testsuites>
<testsuite name="laminas-server Test Suite">
<directory>./test</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
</source>
</phpunit>
Loading

0 comments on commit f7d2830

Please sign in to comment.