mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-10 09:02:42 +00:00
Consider pecl_http as http
This commit is contained in:
parent
ed31420cf1
commit
aeb20d355b
1 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,12 @@ SUPPORTED_EXTENSIONS=''
|
|||
resetIFS
|
||||
for EXTENSION in $EXTENSIONS_LIST; do
|
||||
printf 'Checking extension "%s"... ' "$EXTENSION" >&2
|
||||
case "$EXTENSION" in
|
||||
pecl_http)
|
||||
EXTENSION=http
|
||||
printf '(using %s) ' "$EXTENSION" >&2
|
||||
;;
|
||||
esac
|
||||
if printf '%s' "$ALL_SUPPORTED_EXTENSIONS" | grep -q "^$EXTENSION\s"; then
|
||||
printf 'supported.\n' >&2
|
||||
SUPPORTED_EXTENSIONS="$SUPPORTED_EXTENSIONS $EXTENSION"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue