Skip to content

Commit 0b9889b

Browse files
add collision as dev dependency, use phpunit adapter to print output
1 parent 5359274 commit 0b9889b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"require-dev": {
3232
"dyrynda/laravel-efficient-uuid": "^4.0",
3333
"orchestra/testbench": "^5.0",
34-
"phpunit/phpunit": "^8.0"
34+
"phpunit/phpunit": "^8.0",
35+
"nunomaduro/collision": "^4.1"
3536
},
3637
"autoload-dev": {
3738
"psr-4": {

phpunit.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
convertNoticesToExceptions="true"
77
convertWarningsToExceptions="true"
88
processIsolation="false"
9-
stopOnFailure="false">
9+
stopOnFailure="false"
10+
printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"
11+
>
1012
<testsuites>
1113
<testsuite name="Application Test Suite">
1214
<directory>./tests/</directory>

0 commit comments

Comments
 (0)