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:
parent
e01db37cd1
commit
3dbe416e6c
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue