Skip to content

Commit e04949a

Browse files
committed
Add PHPUnit configuration
1 parent 5ef1d6b commit e04949a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

phpunit.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
bootstrap="vendor/autoload.php"
4+
cacheResult="false"
5+
failOnRisky="true"
6+
failOnWarning="true"
7+
verbose="true">
8+
9+
<coverage>
10+
<include>
11+
<directory suffix=".php">src</directory>
12+
</include>
13+
</coverage>
14+
15+
<testsuites>
16+
<testsuite name="default">
17+
<directory>tests</directory>
18+
</testsuite>
19+
</testsuites>
20+
21+
</phpunit>

0 commit comments

Comments
 (0)