We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca9c13 commit 8f018cbCopy full SHA for 8f018cb
composer.json
@@ -23,5 +23,8 @@
23
"laravel/framework": "^11.35",
24
"phpunit/phpunit": "^11.5",
25
"orchestra/testbench-core": "^9.8"
26
+ },
27
+ "scripts": {
28
+ "test": "./vendor/bin/phpunit"
29
}
30
phpunit.xml.dist
@@ -0,0 +1,19 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit
3
+ backupGlobals="false"
4
+ colors="true"
5
+ processIsolation="false"
6
+ stopOnFailure="false"
7
+ executionOrder="random"
8
+ failOnWarning="true"
9
+ failOnRisky="true"
10
+ failOnEmptyTestSuite="true"
11
+ failOnPhpunitDeprecation="true"
12
+ beStrictAboutOutputDuringTests="true"
13
+>
14
+ <testsuites>
15
+ <testsuite name="Laravel Bus Fluentable Test Suite">
16
+ <directory>tests</directory>
17
+ </testsuite>
18
+ </testsuites>
19
+</phpunit>
0 commit comments