Add support for parallel on PHP 8.0, 8.1 and 8.2 (#649)

pull/653/head
Michele Locati 2022-10-24 15:01:09 +02:00 committed by GitHub
parent 7643d53742
commit 4e8e8b8cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -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 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 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 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 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 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 pcov 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2

View File

@ -2927,6 +2927,8 @@ installRemoteModule() {
if test -z "$installRemoteModule_version"; then if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 701; then if test $PHP_MAJMIN_VERSION -le 701; then
installRemoteModule_version=0.8.3 installRemoteModule_version=0.8.3
elif test $PHP_MAJMIN_VERSION -le 704; then
installRemoteModule_version=1.1.4
fi fi
fi fi
;; ;;