File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 1
1
.env
2
- .phpunit.result .cache
2
+ / .phpunit.cache
3
3
composer.lock
4
4
phpunit.xml
5
5
/vendor
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit bootstrap =" vendor/autoload.php"
3
+ cacheDirectory =" .phpunit.cache"
3
4
backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
+ backupStaticProperties =" false"
5
6
colors =" true"
6
- verbose =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
7
+ failOnNotice =" true"
8
+ failOnWarning =" true"
10
9
processIsolation =" false"
11
10
stopOnFailure =" false" >
12
11
<testsuites >
13
12
<testsuite name =" Test Suite" >
14
13
<directory >tests</directory >
15
14
</testsuite >
16
15
</testsuites >
17
- <filter >
18
- <whitelist >
16
+ <source >
17
+ <include >
19
18
<directory suffix =" .php" >src/</directory >
20
- </whitelist >
21
- </filter >
19
+ </include >
20
+ </source >
22
21
</phpunit >
23
-
You can’t perform that action at this time.
0 commit comments