feat: added PHP 8

This commit is contained in:
leo
2020-12-11 20:09:10 +01:00
parent e74b2b0d0a
commit cf71f8b9a9
9 changed files with 197 additions and 4 deletions
+2 -2
View File
@@ -29,11 +29,11 @@ EXTENSIONS := \
xsl \
zip \
sockets
ifeq (,$(findstring $(PHP_VERSION), 7.2 7.3 7.4 latest))
ifeq (,$(findstring $(PHP_VERSION), 7.2 7.3 7.4 8.0 latest))
# Add more extensions to PHP < 7.2.
EXTENSIONS += mcrypt
endif
ifeq (,$(findstring $(PHP_VERSION), 7.0 7.1 7.2 7.3 7.4 latest))
ifeq (,$(findstring $(PHP_VERSION), 7.0 7.1 7.2 7.3 7.4 8.0 latest))
# Add more extensions to 5.x series images.
EXTENSIONS += mysql
else