We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca972c commit e4407feCopy full SHA for e4407fe
.travis.yml
@@ -7,12 +7,21 @@ php:
7
- '7.3'
8
- '8.0'
9
- '8.1'
10
-
+
11
+env:
12
+ - LARAVEL_VERSION=6.*
13
+ - LARAVEL_VERSION=7.*
14
+ - LARAVEL_VERSION=8.*
15
+ - LARAVEL_VERSION=9.*
16
17
+matrix:
18
+ fast_finish: true
19
20
before_script:
- - composer self-update
- - composer install --no-interaction
- - pear install pear/PHP_CodeSniffer
- - phpenv rehash
21
+ - travis_retry composer self-update
22
+ - travis_retry composer install --prefer-source --no-interaction
23
+ - if [ "$LARAVEL_VERSION" != "" ]; then composer require --dev "laravel/laravel:${LARAVEL_VERSION}" --no-update; fi;
24
+ - composer update
25
26
script:
27
- vendor/bin/phpunit --coverage-text
0 commit comments