From a37fb135766bc7419a131b9c8867787c526cbcec Mon Sep 17 00:00:00 2001 From: Javier Esteban Date: Fri, 22 Oct 2021 14:40:28 +0200 Subject: [PATCH] Add PHP 8.0 support --- Dockerfile | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 112cfc0..c0e0093 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.4-cli-alpine3.11 +FROM php:8.0-cli-alpine3.13 RUN apk update && \ apk add --no-cache \ diff --git a/composer.json b/composer.json index ba55d80..a1ddf36 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^7.4", + "php": "^7.4 | ^8.0", "symfony/framework-bundle": "^4.4|^5.0", "ext-json": "*" },