Skip to content

Commit 57936b7

Browse files
committed
Reverted back php-unit version
1 parent c466af5 commit 57936b7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.phpunit.result.cache

Lines changed: 0 additions & 1 deletion
This file was deleted.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"ext-json": "*"
3232
},
3333
"require-dev": {
34-
"phpunit/phpunit": "^9.0",
34+
"phpunit/phpunit": "^6.0",
3535
"mockery/mockery": "^1"
3636
},
3737
"autoload": {

phpunit.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@
99
convertNoticesToExceptions="true"
1010
convertWarningsToExceptions="true"
1111
processIsolation="false"
12-
stopOnFailure="false">
12+
stopOnFailure="false"
13+
syntaxCheck="false">
1314
<testsuites>
1415
<testsuite name="SimpleRouter Test Suite">
1516
<directory>tests/Pecee/SimpleRouter/</directory>
1617
</testsuite>
1718
</testsuites>
19+
<filter>
20+
<whitelist processUncoveredFilesFromWhitelist="true">
21+
<directory suffix=".php">src</directory>
22+
</whitelist>
23+
</filter>
1824
</phpunit>

0 commit comments

Comments
 (0)