1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00

Add support for mcrypt in PHP 7.2

This commit is contained in:
Michele Locati 2018-04-12 12:26:02 +02:00
parent e01db37cd1
commit 3dbe416e6c
2 changed files with 7 additions and 1 deletions

View file

@ -361,6 +361,12 @@ installPECLModule () {
printf '### INSTALLING PECL MODULE %s ###\n' "${2}"
installPECLModule_actual="${2}"
case "${2}" in
mcrypt)
if test $1 -ge 702
then
installPECLModule_actual="${2}-1.0.1"
fi
;;
memcached)
if test $1 -lt 700
then