From b07bba4d4f6b37da104475eb7c2851a06b7f510f Mon Sep 17 00:00:00 2001 From: Mark Story Date: Sat, 24 Oct 2020 20:47:37 -0400 Subject: [PATCH] Set max PHP version. We won't be supporting PHP8 in 2.x. Several of our dependencies are not compatible and upgrading them would also require breaking change in CakePHP. Folks needing PHP8 support will need to upgrade to 4.x --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5680314f4..8b9168981 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "source": "https://github.com/cakephp/cakephp" }, "require": { - "php": ">=5.3.0" + "php": ">=5.3.0,<8.0.0" }, "suggest": { "ext-openssl": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption",