mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-12-02 09:27:58 +01:00
Use the beta versions of uv
This commit is contained in:
parent
22f3f8bd15
commit
8ecabb0e09
@ -115,6 +115,11 @@ The `pdo_sqlsrv` and `sqlsrv` PHP extensions require the Microsoft ODBC Driver f
|
||||
On Alpine Linux there's no way to automatically install its latest version, so we install it manually.
|
||||
We need to monitor new releases at https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#alpine18
|
||||
|
||||
### uv
|
||||
|
||||
The only available versions of the `uv` PHP extension are all beta.
|
||||
We should switch to the stable release once it will be available.
|
||||
|
||||
## xdiff
|
||||
|
||||
The `xdiff` PHP extension uses the LibXDiff library.
|
||||
|
@ -3579,6 +3579,11 @@ installRemoteModule() {
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
uv)
|
||||
if test -z "$installRemoteModule_version"; then
|
||||
installRemoteModule_version=beta
|
||||
fi
|
||||
;;
|
||||
xdebug)
|
||||
if test -z "$installRemoteModule_version"; then
|
||||
if test $PHP_MAJMIN_VERSION -le 500; then
|
||||
|
Loading…
Reference in New Issue
Block a user