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 70ff635 commit 53a6ac5Copy full SHA for 53a6ac5
.gitignore
@@ -4,5 +4,4 @@
4
/.env
5
.DS_Store
6
.phpunit.result.cache
7
-phpunit.xml
8
composer.lock
phpunit.xml
@@ -0,0 +1,20 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit bootstrap="vendor/autoload.php"
3
+ colors="true"
+ verbose="true">
+ <testsuites>
+ <testsuite name="Unit Tests">
+ <directory>./tests/Unit</directory>
+ </testsuite>
9
+ </testsuites>
10
+
11
+ <coverage>
12
+ <include>
13
+ <directory suffix=".php">./src</directory>
14
+ </include>
15
+ </coverage>
16
17
+ <php>
18
+ <env name="APP_ENV" value="testing"/>
19
+ </php>
20
+</phpunit>
0 commit comments