Add support for Tensor with PHP 8

pull/338/head
Michele Locati 2021-05-25 09:12:08 +02:00
parent a004e20f2e
commit f93b8770e1
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
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 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 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 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 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 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 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" rm "$PHP_INI_DIR/conf.d/tdlib.ini"
installRemoteModule_manuallyInstalled=1 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) uopz)
if test -z "$installRemoteModule_version"; then if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then if test $PHP_MAJMIN_VERSION -le 506; then