mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-11 09:32:41 +00:00
Add support for parallel on PHP 8.0, 8.1 and 8.2 (#649)
This commit is contained in:
parent
7643d53742
commit
4e8e8b8cb9
2 changed files with 3 additions and 1 deletions
|
@ -62,7 +62,7 @@ odbc 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
|||
opcache 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
opencensus 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
openswoole 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
parallel 7.1 7.2 7.3 7.4
|
||||
parallel 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
parle 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
pcntl 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
pcov 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||
|
|
|
@ -2927,6 +2927,8 @@ installRemoteModule() {
|
|||
if test -z "$installRemoteModule_version"; then
|
||||
if test $PHP_MAJMIN_VERSION -le 701; then
|
||||
installRemoteModule_version=0.8.3
|
||||
elif test $PHP_MAJMIN_VERSION -le 704; then
|
||||
installRemoteModule_version=1.1.4
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue