Skip to content

Commit 9b6d3cc

Browse files
Merge pull request #8 from TheDragonCode/2.x
Upgrade phpunit configuration
2 parents 498aa8b + b22b75f commit 9b6d3cc

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

phpunit.xml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +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/10.0/phpunit.xsd"
4-
bootstrap="vendor/autoload.php"
5-
cacheDirectory=".phpunit.cache"
6-
executionOrder="depends,defects"
7-
colors="true"
8-
failOnRisky="true"
9-
failOnWarning="true"
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
5+
bootstrap="vendor/autoload.php"
6+
cacheDirectory=".phpunit.cache"
7+
executionOrder="depends,defects"
8+
colors="true"
9+
failOnRisky="true"
10+
failOnWarning="true"
1011
>
11-
<coverage>
12-
<include>
13-
<directory suffix=".php">src</directory>
14-
</include>
15-
</coverage>
1612
<testsuites>
1713
<testsuite name="default">
1814
<directory>tests</directory>
1915
</testsuite>
2016
</testsuites>
17+
<source>
18+
<include>
19+
<directory suffix=".php">src</directory>
20+
</include>
21+
</source>
2122
</phpunit>

0 commit comments

Comments
 (0)