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 4102456 commit f4f0fb4Copy full SHA for f4f0fb4
phpunit.xml.dist
@@ -0,0 +1,31 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
5
+ backupGlobals="false"
6
+ colors="true"
7
+ bootstrap="vendor/autoload.php"
8
+ failOnRisky="true"
9
+ failOnWarning="true"
10
+>
11
+
12
+ <php>
13
+ <ini name="error_reporting" value="-1" />
14
+ </php>
15
16
+ <testsuites>
17
+ <testsuite name="pager">
18
+ <directory>./Tests/</directory>
19
+ </testsuite>
20
+ </testsuites>
21
22
+ <source>
23
+ <include>
24
+ <directory>.</directory>
25
+ </include>
26
+ <exclude>
27
+ <directory>./Tests</directory>
28
+ <directory>./vendor</directory>
29
+ </exclude>
30
+ </source>
31
+</phpunit>
0 commit comments