Adding composer lock for 4.9.8
[phpmyadmin.git] / test / install-runkit
blobb598b87f836750b541f5cb7b897e2b7159912cd2
1 #!/bin/bash
2 set -e
4 # Do not run as CGI
5 if [ -n "$GATEWAY_INTERFACE" ] ; then
6 echo 'Can not invoke as CGI!'
7 exit 1
8 fi
10 # These do not support runkit
11 case "$TRAVIS_PHP_VERSION" in
12 hhvm*|nightly)
13 exit 0
15 7.*)
16 exit 0
17 # Disabled for now as it causes PHP crashes, we should retry with newer version
18 RVERSION=1.0.5b1
19 wget https://github.com/runkit7/runkit7/releases/download/$RVERSION/runkit-$RVERSION.tgz
20 pecl install ./runkit-$RVERSION.tgz
23 pecl install runkit
25 esac
27 phpenv config-add test/php-runkit.ini