Skip to content

Commit

Permalink
[3.x] New version
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkGhostHunter committed Mar 6, 2024
2 parents 0e1df5d + 2e4cd1c commit e6c8c3f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
18 changes: 10 additions & 8 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage includeUncoveredFiles="false">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>src/LararutServiceProvider.php</file>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix="Test.php">tests</directory>
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
Expand All @@ -25,4 +19,12 @@
<env name="CACHE_DRIVER" value="array"/>
</php>
<logging/>
<source>
<include>
<directory>src</directory>
</include>
<exclude>
<file>src/LararutServiceProvider.php</file>
</exclude>
</source>
</phpunit>
1 change: 1 addition & 0 deletions tests/RutBlueprintMacrosTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\ColumnDefinition;

use function tap;

class RutBlueprintMacrosTest extends TestCase
Expand Down

0 comments on commit e6c8c3f

Please sign in to comment.