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 99f0ae8 commit fe9458bCopy full SHA for fe9458b
.travis.yml
@@ -9,16 +9,25 @@ php:
9
10
matrix:
11
fast_finish: true
12
- allow_failures:
13
- - php: nightly
+ include:
+ - php: 8.0
14
+ env: PHPUNIT_VERSION="9"
15
+ - php: 7.4
16
+ env: PHPUNIT_VERSION=""
17
+ - php: 7.3
18
19
+ - php: 7.2
20
21
+ - php: 7.1
22
23
24
services:
25
- mysql
26
27
install:
28
- |
29
# Install PHPUnit v9 on PHP 8
- if [ "${TRAVIS_PHP_VERSION}" == nightly ] || [ dpkg --compare-versions "${TRAVIS_PHP_VERSION}" ge 8.0 ]; then
30
+ if [ "${PHPUNIT_VERSION}" == "9" ]; then
31
travis_retry composer require --no-interaction --prefer-dist --dev --ignore-platform-reqs "phpunit/phpunit" 9.*
32
# Enable test on PHP 7.1+
33
else
0 commit comments