Add support for vld (#843)
parent
f8bafe15bd
commit
4bab662cd5
|
@ -125,6 +125,11 @@ We need to monitor new releases at https://docs.microsoft.com/en-us/sql/connect/
|
||||||
The only available versions of the `uv` PHP extension are all beta.
|
The only available versions of the `uv` PHP extension are all beta.
|
||||||
We should switch to the stable release once it will be available.
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
|
### vld
|
||||||
|
|
||||||
|
The only available versions of this PHP extension are all beta.
|
||||||
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
## xdiff
|
## xdiff
|
||||||
|
|
||||||
The `xdiff` PHP extension uses the LibXDiff library.
|
The `xdiff` PHP extension uses the LibXDiff library.
|
||||||
|
|
|
@ -123,6 +123,7 @@ uploadprogress 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
uuid 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
uuid 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
uv 8.0 8.1 8.2 8.3
|
uv 8.0 8.1 8.2 8.3
|
||||||
vips 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
vips 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
|
vld 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
wddx 5.5 5.6 7.0 7.1 7.2 7.3
|
wddx 5.5 5.6 7.0 7.1 7.2 7.3
|
||||||
xdebug 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
xdebug 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
xdiff 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
xdiff 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
|
|
|
@ -3864,6 +3864,15 @@ installRemoteModule() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
vld)
|
||||||
|
if test -z "$installRemoteModule_version"; then
|
||||||
|
if test $PHP_MAJMIN_VERSION -lt 700; then
|
||||||
|
installRemoteModule_version=0.14.0
|
||||||
|
else
|
||||||
|
installRemoteModule_version=beta
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
xdebug)
|
xdebug)
|
||||||
if test -z "$installRemoteModule_version"; then
|
if test -z "$installRemoteModule_version"; then
|
||||||
if test $PHP_MAJMIN_VERSION -le 500; then
|
if test $PHP_MAJMIN_VERSION -le 500; then
|
||||||
|
|
Loading…
Reference in New Issue