Skip to content

Commit b785f47

Browse files
jrfnlgrogy
authored andcommitted
Travis: add build against PHP 8.0
PHP 8.0 has been branched off two months ago, so `nightly` is now PHP 8.1 and in the mean time PHP 8.0 was released last week. As of today, there is a PHP 8.0 image available on Travis. This PR adds a new build against PHP 8.0 to the matrix and, as PHP 8.0 has been released, that build is not allowed to fail.
1 parent 9b67e64 commit b785f47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ php:
1414
- 7.2
1515
- 7.3
1616
- 7.4
17+
- 8.0
1718
- "nightly"
1819

1920
jobs:
@@ -34,7 +35,7 @@ cache:
3435

3536
before_script:
3637
- |
37-
if [[ $TRAVIS_PHP_VERSION != "nightly" ]]; then
38+
if [[ $TRAVIS_PHP_VERSION != "nightly" && $TRAVIS_PHP_VERSION != "8.0" ]]; then
3839
composer install --no-suggest --no-interaction
3940
else
4041
# Ignore platform requirements to allow PHPUnit to install on PHP 8.

0 commit comments

Comments
 (0)