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

@ -3669,7 +3669,7 @@ esac
setPHPVersionVariables
setPHPPreinstalledModules
case "$PHP_MAJMIN_VERSION" in
505 | 506 | 700 | 701 | 702 | 703 | 704 | 800 | 801) ;;
505 | 506 | 700 | 701 | 702 | 703 | 704 | 800 | 801 | 802) ;;
*)
printf "### ERROR: Unsupported PHP version: %s.%s ###\n" $((PHP_MAJMIN_VERSION / 100)) $((PHP_MAJMIN_VERSION % 100))
;;