Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Nov 23, 2023
1 parent 5fa19e6 commit 6087bcf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"laravel/pint": "^1.4",
"mockery/mockery": "^1.5.1",
"phpstan/phpstan": "^1.10.7",
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^10.1",
"symfony/process": "^6.2"
},
"extra": {
Expand Down
33 changes: 15 additions & 18 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,29 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="vendor/autoload.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true">
<coverage includeUncoveredFiles="false">
<include>
<directory suffix=".php">src/</directory>
<file>vendor/orchestra/testbench-core/src/Workbench/Workbench.php</file>
</include>
<exclude>
<file>src/Console/BuildCommand.php</file>
<file>src/Console/DevToolCommand.php</file>
<file>src/Console/InstallCommand.php</file>
</exclude>
</coverage>
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<coverage includeUncoveredFiles="false"/>
<testsuites>
<testsuite name="Testbench Test Suite">
<directory suffix="Test.php">./tests/</directory>
Expand All @@ -33,4 +19,15 @@
<server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<server name="SEND_DEPRECATED_NOTICES_TO_RAY" value="(true)"/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
<file>vendor/orchestra/testbench-core/src/Workbench/Workbench.php</file>
</include>
<exclude>
<file>src/Console/BuildCommand.php</file>
<file>src/Console/DevToolCommand.php</file>
<file>src/Console/InstallCommand.php</file>
</exclude>
</source>
</phpunit>

0 comments on commit 6087bcf

Please sign in to comment.