Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add more PHP versions
  • Loading branch information
jsteemann committed Apr 28, 2021
commit 643f39f12ff6cb3836c156dff3d220f4710d9927
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ matrix:
- php: '5.6'
- php: '7.0'
- php: '7.1'
- php: '7.2'
- php: '7.3'
- php: '7.4'
allow_failures:
- php: hhvm

Expand Down
15 changes: 15 additions & 0 deletions tests/travis/setup_arangodb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ wget "https://phar.phpunit.de/phpunit-6.0.phar"
mv phpunit-6.0.phar ./phpunit
fi

if [[ "$TRAVIS_PHP_VERSION" == "7.2" ]] ; then
wget "https://phar.phpunit.de/phpunit-6.0.phar"
mv phpunit-6.0.phar ./phpunit
fi

if [[ "$TRAVIS_PHP_VERSION" == "7.3" ]] ; then
wget "https://phar.phpunit.de/phpunit-6.0.phar"
mv phpunit-6.0.phar ./phpunit
fi

if [[ "$TRAVIS_PHP_VERSION" == "7.4" ]] ; then
wget "https://phar.phpunit.de/phpunit-6.0.phar"
mv phpunit-6.0.phar ./phpunit
fi

if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]] ; then
wget "https://phar.phpunit.de/phpunit-6.0.phar"
mv phpunit-6.0.phar ./phpunit
Expand Down