We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c139718 commit b70471aCopy full SHA for b70471a
phpunit.xml.dist
@@ -0,0 +1,23 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+
3
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5
+ colors="true"
6
+ bootstrap="vendor/autoload.php"
7
+ stopOnError="true"
8
+>
9
+ <php>
10
+ <ini name="memory_limit" value="-1" />
11
+ <ini name="error_reporting" value="-1" />
12
+ <ini name="log_errors_max_len" value="0" />
13
+ <ini name="zend.assertions" value="1" />
14
+ <ini name="assert.exception" value="1" />
15
+ <ini name="xdebug.show_exception_trace" value="0" />
16
+ </php>
17
18
+ <testsuites>
19
+ <testsuite name="Project Test Suite">
20
+ <directory>tests</directory>
21
+ </testsuite>
22
+ </testsuites>
23
+</phpunit>
0 commit comments