Skip to content

Commit 4e4a03b

Browse files
committed
Migrate phpunit configuration
Signed-off-by: Aleksei Khudiakov <[email protected]>
1 parent 5f64af2 commit 4e4a03b

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"laminas/laminas-servicemanager": "^3.0.3",
3838
"laminas/laminas-uri": "^2.5",
3939
"laminas/laminas-view": "^2.13.1",
40-
"phpunit/phpunit": "^10.0.0",
40+
"phpunit/phpunit": "^10.4",
4141
"symfony/css-selector": "^6.0",
4242
"symfony/dom-crawler": "^6.0"
4343
},

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

+11-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,20 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
55
bootstrap="./test/bootstrap.php"
6-
colors="true">
7-
<coverage>
6+
cacheDirectory=".phpunit.cache"
7+
displayDetailsOnIncompleteTests="true"
8+
displayDetailsOnSkippedTests="true"
9+
displayDetailsOnTestsThatTriggerDeprecations="true"
10+
displayDetailsOnTestsThatTriggerErrors="true"
11+
displayDetailsOnTestsThatTriggerNotices="true"
12+
displayDetailsOnTestsThatTriggerWarnings="true"
13+
colors="true"
14+
>
15+
<source>
816
<include>
917
<directory suffix=".php">./src</directory>
1018
</include>
11-
</coverage>
19+
</source>
1220

1321
<testsuites>
1422
<testsuite name="laminas-test Test Suite">

0 commit comments

Comments
 (0)