Skip to content

Commit 09c5695

Browse files
committed
Upgrade PHPUnit config
1 parent 4962563 commit 09c5695

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

phpunit.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4-
bootstrap="vendor/autoload.php"
5-
executionOrder="depends,defects"
6-
cacheResult="false"
7-
colors="true"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
executionOrder="depends,defects"
6+
cacheResult="false"
7+
colors="true"
88
beStrictAboutOutputDuringTests="true"
9-
beStrictAboutTodoAnnotatedTests="true"
10-
verbose="true">
9+
displayDetailsOnPhpunitDeprecations="true"
10+
displayDetailsOnTestsThatTriggerDeprecations="true"
11+
cacheDirectory=".phpunit.cache">
1112
<testsuites>
1213
<testsuite name="default">
1314
<directory suffix="Test.php">tests</directory>
1415
</testsuite>
1516
</testsuites>
16-
17-
<coverage processUncoveredFiles="true">
17+
<source>
1818
<include>
1919
<directory suffix=".php">src</directory>
2020
</include>
21-
</coverage>
21+
</source>
2222
</phpunit>

0 commit comments

Comments
 (0)