We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c466af5 commit 57936b7Copy full SHA for 57936b7
.phpunit.result.cache
composer.json
@@ -31,7 +31,7 @@
31
"ext-json": "*"
32
},
33
"require-dev": {
34
- "phpunit/phpunit": "^9.0",
+ "phpunit/phpunit": "^6.0",
35
"mockery/mockery": "^1"
36
37
"autoload": {
phpunit.xml
@@ -9,10 +9,16 @@
9
convertNoticesToExceptions="true"
10
convertWarningsToExceptions="true"
11
processIsolation="false"
12
- stopOnFailure="false">
+ stopOnFailure="false"
13
+ syntaxCheck="false">
14
<testsuites>
15
<testsuite name="SimpleRouter Test Suite">
16
<directory>tests/Pecee/SimpleRouter/</directory>
17
</testsuite>
18
</testsuites>
19
+ <filter>
20
+ <whitelist processUncoveredFilesFromWhitelist="true">
21
+ <directory suffix=".php">src</directory>
22
+ </whitelist>
23
+ </filter>
24
</phpunit>
0 commit comments