Skip to content

Commit

Permalink
Laravel 11 & PHP>=8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
msztorc committed Mar 18, 2024
1 parent 09b8b21 commit cc04664
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<php>
Expand All @@ -16,14 +11,14 @@
</php>
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
Expand Down

0 comments on commit cc04664

Please sign in to comment.