Skip to content

Commit ac5970d

Browse files
HenrichHenrich
Henrich
authored and
Henrich
committed
Fix orchestra/testbench version issue.
1 parent f35b35c commit ac5970d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^7.4",
22-
"illuminate/support": "^8"
22+
"laravel/framework": ">=6.0@dev"
2323
},
2424
"require-dev": {
2525
"friendsofphp/php-cs-fixer": "^2.16",
2626
"symfony/var-dumper": "^5.0",
27-
"orchestra/testbench": "^5.0",
27+
"orchestra/testbench": "^4.10||^5.0||^6.0",
2828
"phpunit/phpunit": "^9.0"
2929
},
3030
"autoload": {

phpunit.xml.dist

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
convertNoticesToExceptions="true"
99
convertWarningsToExceptions="true"
1010
processIsolation="false"
11-
stopOnFailure="false">
11+
stopOnFailure="true">
1212
<testsuites>
13-
<testsuite name="Package Test Suite">
13+
<testsuite name="Test Suite">
1414
<directory>tests</directory>
1515
</testsuite>
1616
</testsuites>
@@ -20,8 +20,9 @@
2020
</whitelist>
2121
</filter>
2222
<logging>
23+
<log type="tap" target="build/report.tap"/>
2324
<log type="junit" target="build/report.junit.xml"/>
24-
<log type="coverage-html" target="build/coverage"/>
25+
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
2526
<log type="coverage-text" target="build/coverage.txt"/>
2627
<log type="coverage-clover" target="build/logs/clover.xml"/>
2728
</logging>

0 commit comments

Comments
 (0)