src
1 year ago
stubs
4 years ago
.styleci.yml
4 years ago
CHANGELOG.md
4 years ago
CODE_OF_CONDUCT.md
4 years ago
CONTRIBUTING.md
4 years ago
ISSUE_TEMPLATE.md
4 years ago
LICENSE.md
4 years ago
PULL_REQUEST_TEMPLATE.md
4 years ago
README.md
4 years ago
composer.json
1 year ago
phpunit.xml
4 years ago
upgrade.sh
4 years ago
phpunit.xml
30 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit backupGlobals="false" |
| 3 | backupStaticAttributes="false" |
| 4 | bootstrap="tests/bootstrap.php" |
| 5 | colors="true" |
| 6 | convertErrorsToExceptions="true" |
| 7 | convertNoticesToExceptions="true" |
| 8 | convertWarningsToExceptions="true" |
| 9 | processIsolation="false" |
| 10 | stopOnError="false" |
| 11 | stopOnFailure="false" |
| 12 | verbose="true" |
| 13 | > |
| 14 | <testsuites> |
| 15 | <testsuite name="Laravel Test Suite"> |
| 16 | <directory suffix="Test.php">./tests</directory> |
| 17 | </testsuite> |
| 18 | </testsuites> |
| 19 | <logging> |
| 20 | <log type="coverage-html" target="coverage/" lowUpperBound="35" highLowerBound="70"/> |
| 21 | <log type="coverage-clover" target="coverage/coverage-clover.xml" lowUpperBound="35" highLowerBound="70"/> |
| 22 | <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> |
| 23 | </logging> |
| 24 | <filter> |
| 25 | <whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true"> |
| 26 | <directory suffix=".php">./src</directory> |
| 27 | </whitelist> |
| 28 | </filter> |
| 29 | </phpunit> |
| 30 |