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

Start adding support for PHP 5.5

This commit is contained in:
Michele Locati 2020-01-31 11:09:13 +01:00
parent d45b59d6b8
commit ea96de853e
No known key found for this signature in database
GPG key ID: 98B7CE2E7234E28B
4 changed files with 20 additions and 12 deletions

View file

@ -1325,7 +1325,7 @@ mkdir -p /tmp/src
IPE_ERRFLAG_FILE="$(mktemp -p /tmp/src)"
PHP_MAJMIN_VERSION=$(getPHPMajorMinor)
case "$PHP_MAJMIN_VERSION" in
506 | 700 | 701 | 702 | 703 | 704) ;;
505 | 506 | 700 | 701 | 702 | 703 | 704) ;;
*)
printf "### ERROR: Unsupported PHP version: %s.%s ###\n" $((PHP_MAJMIN_VERSION / 100)) $((PHP_MAJMIN_VERSION % 100))
;;