Skip to content

Commit 8eab699

Browse files
authored
phpunit --migrate-configuration (#1526)
1 parent 49ac75d commit 8eab699

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

phpunit.xml.dist

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
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-
backupGlobals="false"
6-
backupStaticAttributes="false"
7-
colors="true"
8-
verbose="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
processIsolation="false"
13-
stopOnFailure="false">
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
5+
cacheDirectory=".phpunit.result.cache"
6+
>
147
<testsuites>
158
<testsuite name="Unit Tests">
169
<directory>tests</directory>
1710
</testsuite>
1811
</testsuites>
19-
<coverage>
12+
<source>
2013
<include>
2114
<directory suffix=".php">src/</directory>
2215
</include>
23-
</coverage>
16+
</source>
2417
</phpunit>

0 commit comments

Comments
 (0)