1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00

Add support for PHP 8.2 (#586)

* Declare that we now support PHP 8.2

* PHP 8.2: test rc instead of stable

* Declare initial list of extensions that work with PHP 8.2
This commit is contained in:
Michele Locati 2022-06-11 08:26:39 +02:00 committed by GitHub
parent 333576272b
commit 9e2cbaf555
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 96 additions and 93 deletions

View file

@ -153,6 +153,9 @@ getDockerImageName() {
return
fi
case "$2" in
8.2)
getDockerImageName_version="$2-rc"
;;
*)
getDockerImageName_version="$2"
;;