Skip to content

Commit ba38708

Browse files
committed
All versions of PHP msgpack are beta, be explicit about which version to install
1 parent fbc866e commit ba38708

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.travis/travis.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,11 @@ case $ACTION in
239239
install_igbinary
240240

241241
# Install msgpack extension
242-
# install_msgpack
243-
pecl install msgpack
242+
if [[ "$TRAVIS_PHP_VERSION" < "7.0" ]]; then
243+
pecl install msgpack-0.5.7
244+
else
245+
pecl install msgpack-2.0.1
246+
fi
244247

245248
install_memcached
246249
run_memcached

0 commit comments

Comments
 (0)