File tree Expand file tree Collapse file tree 4 files changed +4
-18
lines changed Expand file tree Collapse file tree 4 files changed +4
-18
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 @@ -52,9 +52,6 @@ matrix:
52
52
- php : hhvm
53
53
env : LARAVEL_VERSION=5.4.*
54
54
dist : trusty
55
- - php : hhvm
56
- env : LARAVEL_VERSION=5.5.*
57
- dist : trusty
58
55
59
56
before_install :
60
57
- if [[ $TRAVIS_PHP_VERSION =~ ^hhvm ]]; then echo 'hhvm.jit = false' >> /etc/hhvm/php.ini ; fi
@@ -64,4 +61,4 @@ before_install:
64
61
install :
65
62
- travis_retry composer install --no-suggest --prefer-dist -n -o
66
63
67
- 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