Skip to content

Commit b9cb7fc

Browse files
committed
🚀 Build/Travis: test builds against PHP 7.3
PHP 7.3 is now available on Travis, so testing against the highest supported PHP version should use PHP 7.3. Also: * As this repo does not use coveralls, the condition for disabling Xdebug made no sense, so removing it.
1 parent 66064cf commit b9cb7fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cache:
1515
matrix:
1616
fast_finish: true
1717
include:
18-
- php: 7.2
18+
- php: 7.3
1919
addons:
2020
apt:
2121
packages:
@@ -24,14 +24,14 @@ matrix:
2424

2525
before_install:
2626
# Speed up build time by disabling Xdebug when its not needed.
27-
- if [[ $COVERALLS_VERSION == "notset" ]]; then phpenv config-rm xdebug.ini || echo 'No xdebug config.'; fi
27+
- phpenv config-rm xdebug.ini || echo 'No xdebug config.'
2828
- export XMLLINT_INDENT=" "
2929
- composer install
3030
- vendor/bin/phpcs -i
3131

3232
script:
3333
- |
34-
if [[ $TRAVIS_PHP_VERSION == "7.2" ]]; then
34+
if [[ $TRAVIS_PHP_VERSION == "7.3" ]]; then
3535
# Validate the xml file.
3636
# @link http://xmlsoft.org/xmllint.html
3737
xmllint --noout ./*/ruleset.xml

0 commit comments

Comments
 (0)