File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 77 - 7.2 # security support until 30/11/2020
88 - 7.3 # security support until 06/12/2021
99 - 7.4 # security support until 28/11/2022
10+ - 8.0 # security support until 26/11/2023
1011 - nightly
1112
1213addons :
@@ -17,6 +18,13 @@ addons:
1718before_script :
1819 - stable='^[0-9\.]+$'; if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then phpenv config-rm xdebug.ini; fi
1920 - export PATH="$HOME/.composer/vendor/bin:$PATH"
21+ # PHPUnit 8.x is not (yet) supported, so prevent issues with Travis images using it.
22+ - |
23+ if [[ $TRAVIS_PHP_VERSION == "nightly" || $TRAVIS_PHP_VERSION == "8.0" ]]; then
24+ travis_retry composer install --ignore-platform-reqs
25+ else
26+ travis_retry composer install
27+ fi
2028
2129script :
2230 - ant test -Dcomposer.path=composer
Original file line number Diff line number Diff line change @@ -4,4 +4,3 @@ composer.path = ${basedir}/composer.phar
44
55# PHP Code Sniffer
66phpcs.standard = PEAR
7- phpcs.dir = ${basedir}/vendor/squizlabs/php_codesniffer
Original file line number Diff line number Diff line change 1717 <delete dir =" ${ basedir } /build" />
1818 </target >
1919
20- <target name =" vendor" description =" Load composer repositories" depends =" composer" >
20+ <target name =" vendor" description =" Load composer repositories" depends =" composer" unless = " ${ env.TRAVIS } " >
2121 <exec executable =" ${ composer.path } " failonerror =" true" >
2222 <arg value =" install" />
2323 </exec >
You can’t perform that action at this time.
0 commit comments