File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 6
6
- 7.0
7
7
- 7.1
8
8
- 7.2
9
+ - 7.3
9
10
- hhvm
10
11
- nightly
11
12
@@ -17,9 +18,14 @@ matrix:
17
18
- php : nightly
18
19
19
20
install :
20
- - if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
21
- then travis_retry composer require laravel/framework;
22
- else travis_retry composer update --no-interaction --prefer-source;
21
+ - if [ ${TRAVIS_PHP_VERSION} == "5.5.9" ]; then
22
+ travis_retry composer require laravel/framework "5.2.*";
23
+ elif [ ${TRAVIS_PHP_VERSION} == "5.6" ]; then
24
+ travis_retry composer require laravel/framework "5.4.*";
25
+ elif [ ${TRAVIS_PHP_VERSION} == "7.0" ]; then
26
+ travis_retry composer require laravel/framework "5.5.*";
27
+ else
28
+ travis_retry composer update --no-interaction --prefer-source;
23
29
fi
24
30
25
31
script : make test
Original file line number Diff line number Diff line change 17
17
"illuminate/support" : " ~5.1"
18
18
},
19
19
"require-dev" : {
20
- "phpunit/phpunit" : " ~4.0|~5.0"
20
+ "phpunit/phpunit" : " ~4.0|~5.0" ,
21
+ "vlucas/phpdotenv" : " ~2.0|~3.0"
21
22
},
22
23
"suggest" : {
23
24
"laravel/framework" : " To test the Laravel bindings" ,
You can’t perform that action at this time.
0 commit comments