Skip to content

Commit 633c9ba

Browse files
Merge branch '6.0'
2 parents d00442e + 21248a5 commit 633c9ba

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
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111

1212
env:
13-
COMPOSER_ROOT_VERSION: "7.0-dev"
13+
COMPOSER_ROOT_VERSION: "7.0.x-dev"
1414

1515
jobs:
1616
coding-guidelines:

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"require-dev": {
3131
"ext-dom": "*",
32-
"phpunit/phpunit": "^11.0"
32+
"phpunit/phpunit": "^11.3"
3333
},
3434
"autoload": {
3535
"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
processIsolation="true"
@@ -22,7 +25,7 @@
2225
<ini name="date.timezone" value="Etc/UTC"/>
2326
</php>
2427

25-
<source>
28+
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
2629
<include>
2730
<directory>src</directory>
2831
</include>

0 commit comments

Comments
 (0)