Skip to content

Commit 428e972

Browse files
Bump
1 parent e8fb6fc commit 428e972

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"php": "^7.3 || ^8.0"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^9.0",
29+
"phpunit/phpunit": "^9.3",
3030
"symfony/process": "^4.2 || ^5"
3131
},
3232
"autoload": {

phpunit.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.2/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
5+
executionOrder="depends,defects"
56
forceCoversAnnotation="true"
67
beStrictAboutCoversAnnotation="true"
78
beStrictAboutOutputDuringTests="true"
89
beStrictAboutTodoAnnotatedTests="true"
10+
failOnRisky="true"
11+
failOnWarning="true"
912
verbose="true">
1013
<testsuites>
1114
<testsuite name="default">
1215
<directory suffix="Test.php">tests</directory>
1316
</testsuite>
1417
</testsuites>
1518

16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
19+
<coverage processUncoveredFiles="true">
20+
<include>
1821
<directory suffix=".php">src</directory>
19-
</whitelist>
20-
</filter>
22+
</include>
23+
</coverage>
2124
</phpunit>

0 commit comments

Comments
 (0)