We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15a0300 commit b7aed4bCopy full SHA for b7aed4b
2 files changed
.gitignore
@@ -2,7 +2,6 @@
2
/.php-cs-fixer.cache
3
/.php-cs-fixer.php
4
/composer.lock
5
-/phpunit.xml
6
/vendor/
7
*.swp
8
*.swo
phpunit.xml
@@ -0,0 +1,17 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
+ bootstrap="vendor/autoload.php"
+ colors="true"
+>
+ <testsuites>
+ <testsuite name="Test Suite">
9
+ <directory suffix=".php">./tests</directory>
10
+ </testsuite>
11
+ </testsuites>
12
+ <source>
13
+ <include>
14
+ <directory suffix=".php">./src</directory>
15
+ </include>
16
+ </source>
17
+</phpunit>
0 commit comments