File tree Expand file tree Collapse file tree 4 files changed +8
-15
lines changed Expand file tree Collapse file tree 4 files changed +8
-15
lines changed Original file line number Diff line number Diff line change 1
1
composer.lock
2
2
phpunit.xml
3
3
vendor
4
+ /.idea
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ matrix:
28
28
env : LARAVEL_VERSION=5.3.*
29
29
- php : 7.0
30
30
env : LARAVEL_VERSION=5.4.*
31
+ - php : 7.0
32
+ env : LARAVEL_VERSION=5.5.*
31
33
- php : 7.1
32
34
env : LARAVEL_VERSION=5.1.*
33
35
- php : 7.1
@@ -36,6 +38,8 @@ matrix:
36
38
env : LARAVEL_VERSION=5.3.*
37
39
- php : 7.1
38
40
env : LARAVEL_VERSION=5.4.*
41
+ - php : 7.1
42
+ env : LARAVEL_VERSION=5.5.*
39
43
- php : hhvm
40
44
env : LARAVEL_VERSION=5.1.*
41
45
dist : trusty
@@ -57,4 +61,4 @@ before_install:
57
61
install :
58
62
- travis_retry composer install --no-suggest --prefer-dist -n -o
59
63
60
- script : vendor/bin/phpunit
64
+ script : vendor/bin/phpunit
Original file line number Diff line number Diff line change 24
24
"mrclay/minify" : " ^2.2"
25
25
},
26
26
"require-dev" : {
27
- "graham-campbell/testbench" : " ^3.1" ,
27
+ "graham-campbell/testbench" : " ^3.1|^4.0 " ,
28
28
"mockery/mockery" : " ^0.9.4" ,
29
- "phpunit/phpunit" : " ^4.8|^5.0"
29
+ "phpunit/phpunit" : " ^4.8|^5.0|^6.0 "
30
30
},
31
31
"autoload" : {
32
32
"psr-4" : {
Original file line number Diff line number Diff line change 21
21
*/
22
22
abstract class AbstractFunctionalTestCase extends AbstractTestCase
23
23
{
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
-
36
24
/**
37
25
* Normalise eol characters in a string.
38
26
*
You can’t perform that action at this time.
0 commit comments