Skip to content

Commit 643f39f

Browse files
committed
add more PHP versions
1 parent d3642ce commit 643f39f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ matrix:
1010
- php: '5.6'
1111
- php: '7.0'
1212
- php: '7.1'
13+
- php: '7.2'
14+
- php: '7.3'
15+
- php: '7.4'
1316
allow_failures:
1417
- php: hhvm
1518

tests/travis/setup_arangodb.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,21 @@ 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+
30+
if [[ "$TRAVIS_PHP_VERSION" == "7.4" ]] ; then
31+
wget "https://phar.phpunit.de/phpunit-6.0.phar"
32+
mv phpunit-6.0.phar ./phpunit
33+
fi
34+
2035
if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]] ; then
2136
wget "https://phar.phpunit.de/phpunit-6.0.phar"
2237
mv phpunit-6.0.phar ./phpunit

0 commit comments

Comments
 (0)