Skip to content

Commit b7122ac

Browse files
Merge branch '3.0'
2 parents 8fa4583 + a43b074 commit b7122ac

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: "CI"
88

99
env:
10-
COMPOSER_ROOT_VERSION: "4.0-dev"
10+
COMPOSER_ROOT_VERSION: "4.0.x-dev"
1111

1212
permissions:
1313
contents: read

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"php": ">=8.2"
3131
},
3232
"require-dev": {
33-
"phpunit/phpunit": "^11.0"
33+
"phpunit/phpunit": "^11.3"
3434
},
3535
"autoload": {
3636
"classmap": [

phpunit.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
bootstrap="vendor/autoload.php"
55
cacheDirectory=".phpunit.cache"
66
executionOrder="depends,defects"
7+
shortenArraysForExportThreshold="10"
78
requireCoverageMetadata="true"
89
beStrictAboutCoverageMetadata="true"
910
beStrictAboutOutputDuringTests="true"
11+
displayDetailsOnPhpunitDeprecations="true"
12+
failOnPhpunitDeprecation="true"
1013
failOnRisky="true"
1114
failOnWarning="true"
1215
colors="true">
@@ -16,7 +19,7 @@
1619
</testsuite>
1720
</testsuites>
1821

19-
<source>
22+
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
2023
<include>
2124
<directory>src</directory>
2225
</include>

0 commit comments

Comments
 (0)