Skip to content

Commit b0d123a

Browse files
committed
try testing additional PHP versions
1 parent fbc337f commit b0d123a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ matrix:
1010
- php: '5.6'
1111
- php: '7.0'
1212
- php: '7.1'
13+
- php: '7.2'
14+
- php: '7.3'
1315
allow_failures:
1416
- php: hhvm
1517

tests/travis/setup_arangodb.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ wget "https://phar.phpunit.de/phpunit-6.0.phar"
1717
mv phpunit-6.0.phar ./phpunit
1818
fi
1919

20+
if [[ "$TRAVIS_PHP_VERSION" == "7.2" ]] ; then
21+
wget "https://phar.phpunit.de/phpunit-6.0.phar"
22+
mv phpunit-6.0.phar ./phpunit
23+
fi
24+
25+
if [[ "$TRAVIS_PHP_VERSION" == "7.3" ]] ; then
26+
wget "https://phar.phpunit.de/phpunit-6.0.phar"
27+
mv phpunit-6.0.phar ./phpunit
28+
fi
29+
2030
if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]] ; then
2131
wget "https://phar.phpunit.de/phpunit-6.0.phar"
2232
mv phpunit-6.0.phar ./phpunit

0 commit comments

Comments
 (0)