Merge pull request #338 from mlocati/tensor-php8

Add support for Tensor with PHP 8
pull/340/head
Michele Locati 2021-05-30 15:41:03 +02:00 committed by GitHub
commit 37e67018d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -84,7 +84,7 @@ sybase_ct 5.5 5.6
sysvmsg 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
sysvsem 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
sysvshm 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
tensor 7.2 7.3 7.4
tensor 7.2 7.3 7.4 8.0
tidy 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
timezonedb 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
uopz 5.5 5.6 7.0 7.1 7.2 7.3 7.4

View File

@ -2136,6 +2136,15 @@ installRemoteModule() {
rm "$PHP_INI_DIR/conf.d/tdlib.ini"
installRemoteModule_manuallyInstalled=1
;;
tensor)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 703; then
installRemoteModule_version=2.2.3
elif test $PHP_MAJMIN_VERSION -ge 800; then
installRemoteModule_version=beta
fi
fi
;;
uopz)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then