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

PHP 8.4 support added #81

Merged
merged 10 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
gsteel marked this conversation as resolved.
Show resolved Hide resolved
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
Loading