Skip to content

Commit 3e00b6b

Browse files
authored
Create phunit.xml
1 parent 121e643 commit 3e00b6b

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

phunit.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?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/11.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
cacheDirectory=".phpunit.cache"
6+
executionOrder="depends,defects"
7+
requireCoverageMetadata="false"
8+
beStrictAboutCoverageMetadata="false"
9+
beStrictAboutOutputDuringTests="true"
10+
failOnRisky="true"
11+
failOnWarning="true">
12+
13+
<testsuites>
14+
<testsuite name="unit">
15+
<directory>tests</directory>
16+
</testsuite>
17+
</testsuites>
18+
19+
<source>
20+
<include>
21+
<directory>src</directory>
22+
</include>
23+
</source>
24+
25+
<php>
26+
<ini name="error_reporting" value="-1" />
27+
<ini name="memory_limit" value="-1" />
28+
<ini name="date.timezone" value="UTC" />
29+
</php>
30+
</phpunit>

0 commit comments

Comments
 (0)