File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11composer.lock
22phpunit.xml
33vendor
4+ /.idea
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ matrix:
2828 env : LARAVEL_VERSION=5.3.*
2929 - php : 7.0
3030 env : LARAVEL_VERSION=5.4.*
31+ - php : 7.0
32+ env : LARAVEL_VERSION=5.5.*
3133 - php : 7.1
3234 env : LARAVEL_VERSION=5.1.*
3335 - php : 7.1
@@ -36,6 +38,8 @@ matrix:
3638 env : LARAVEL_VERSION=5.3.*
3739 - php : 7.1
3840 env : LARAVEL_VERSION=5.4.*
41+ - php : 7.1
42+ env : LARAVEL_VERSION=5.5.*
3943 - php : hhvm
4044 env : LARAVEL_VERSION=5.1.*
4145 dist : trusty
@@ -57,4 +61,4 @@ before_install:
5761install :
5862 - travis_retry composer install --no-suggest --prefer-dist -n -o
5963
60- script : vendor/bin/phpunit
64+ script : vendor/bin/phpunit
Original file line number Diff line number Diff line change 2424 "mrclay/minify" : " ^2.2"
2525 },
2626 "require-dev" : {
27- "graham-campbell/testbench" : " ^3.1" ,
27+ "graham-campbell/testbench" : " ^3.1|^4.0 " ,
2828 "mockery/mockery" : " ^0.9.4" ,
29- "phpunit/phpunit" : " ^4.8|^5.0"
29+ "phpunit/phpunit" : " ^4.8|^5.0|^6.0 "
3030 },
3131 "autoload" : {
3232 "psr-4" : {
Original file line number Diff line number Diff line change 2121 */
2222abstract class AbstractFunctionalTestCase extends AbstractTestCase
2323{
24- /**
25- * @before
26- */
27- public function setUpStorage ()
28- {
29- $ files = glob (storage_path ('framework/views/* ' ));
30-
31- foreach ($ files as $ file ) {
32- @unlink ($ file );
33- }
34- }
35-
3624 /**
3725 * Normalise eol characters in a string.
3826 *
You can’t perform that action at this time.
0 commit comments