File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed
Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 11tests / export-ignore
22.github / export-ignore
3+ .gitignore export-ignore
4+ .gitattributes export-ignore
5+ .php-cs-fixer.php export-ignore
6+ CHANGELOG.md export-ignore
7+ composer.lock export-ignore
8+ phpstan.neon export-ignore
9+ phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change 11.idea /
2- .phpunit.result.cache
32.php-cs-fixer.cache
43vendor /
4+ .phpunit.cache
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
5+ bootstrap =" ./vendor/autoload.php"
6+ colors =" true"
7+ cacheDirectory =" .phpunit.cache"
8+ displayDetailsOnAllIssues =" true"
9+ failOnWarning =" true"
10+ failOnNotice =" true"
11+ failOnDeprecation =" true"
12+ failOnPhpunitDeprecation =" true"
13+ >
14+ <testsuites >
15+ <testsuite name =" Tests" >
16+ <directory >./tests/</directory >
17+ </testsuite >
18+ </testsuites >
19+ <source ignoreIndirectDeprecations =" true" >
20+ <include >
21+ <directory suffix =" .php" >./src</directory >
22+ </include >
23+ </source >
24+ </phpunit >
You can’t perform that action at this time.
0 commit comments