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 c4fe14d commit 1985ac1Copy full SHA for 1985ac1
.gitignore
@@ -1 +1,2 @@
1
vendor/
2
+.phpunit.result.cache
phpunit.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="false"
3
+ bootstrap="./vendor/autoload.php"
4
+ colors="true"
5
+ convertErrorsToExceptions="true"
6
+ convertNoticesToExceptions="true"
7
+ convertWarningsToExceptions="true"
8
+ verbose="true"
9
+>
10
+ <testsuites>
11
+ <testsuite name="Laravel Swagger Test Suite">
12
+ <directory suffix="Test.php">./tests</directory>
13
+ </testsuite>
14
+ </testsuites>
15
+ <filter>
16
+ <whitelist addUncoveredFilesFromWhitelist="true">
17
+ <directory suffix=".php">./src</directory>
18
+ </whitelist>
19
+ </filter>
20
+</phpunit>
0 commit comments