File tree 3 files changed +45
-0
lines changed
3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ tests/temp
5
5
composer.lock
6
6
phpunit.xml
7
7
.env
8
+ .idea
9
+ .phpunit.result.cache
Original file line number Diff line number Diff line change
1
+ cache :
2
+ directories :
3
+ - $HOME/.composer/cache
4
+
5
+ language : php
6
+
7
+ php :
8
+ - 7.2
9
+ - 7.3
10
+
11
+ env :
12
+ matrix :
13
+ - COMPOSER_FLAGS="--prefer-lowest"
14
+ - COMPOSER_FLAGS=""
15
+
16
+ before_script :
17
+ - travis_retry composer self-update
18
+ - travis_wait composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
19
+
20
+ script :
21
+ - vendor/bin/phpunit --testdox
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit bootstrap =" vendor/autoload.php"
3
+ backupGlobals =" false"
4
+ backupStaticAttributes =" false"
5
+ colors =" true"
6
+ verbose =" true"
7
+ convertErrorsToExceptions =" true"
8
+ convertNoticesToExceptions =" true"
9
+ convertWarningsToExceptions =" true"
10
+ processIsolation =" false"
11
+ stopOnFailure =" false" >
12
+ <testsuites >
13
+ <testsuite name =" Laravel Module Loader Test Suite" >
14
+ <directory >tests</directory >
15
+ </testsuite >
16
+ </testsuites >
17
+ <filter >
18
+ <whitelist >
19
+ <directory suffix =" .php" >src/</directory >
20
+ </whitelist >
21
+ </filter >
22
+ </phpunit >
You can’t perform that action at this time.
0 commit comments