From c032e74e589c756b165cd225d6c0a22e0bf55eb7 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 25 Feb 2021 11:28:26 +0200 Subject: [PATCH] drop php 7.2 --- README.md | 2 +- application/Espo/Resources/defaults/systemConfig.php | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f9e660ee61..704b180728 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It's a web application with a frontend designed as a single page application and ### Requirements -* PHP 7.2 and later (with pdo, json, gd, openssl, zip, imap, mbstring, curl extensions); +* PHP 7.3 and later (with pdo, json, gd, openssl, zip, imap, mbstring, curl extensions); * MySQL 5.7 (and later), or MariaDB 10.1 (and later). For more information about server configuration see [this article](https://docs.espocrm.com/administration/server-configuration/). diff --git a/application/Espo/Resources/defaults/systemConfig.php b/application/Espo/Resources/defaults/systemConfig.php index 196d211223..55377138c8 100644 --- a/application/Espo/Resources/defaults/systemConfig.php +++ b/application/Espo/Resources/defaults/systemConfig.php @@ -255,7 +255,7 @@ return [ 'ldapUserEmailAddressAttribute' => 'mail', 'ldapUserPhoneNumberAttribute' => 'telephoneNumber', 'ldapUserObjectClass' => 'person', - 'requiredPhpVersion' => '7.2.0', + 'requiredPhpVersion' => '7.3.0', 'requiredPhpLibs' => [ 'json', 'openssl', diff --git a/composer.json b/composer.json index e57c96386e..b25cc8a6f8 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "homepage": "https://github.com/espocrm/espocrm.git", "license": "GPL-3.0-only", "require": { - "php": ">=7.2.0", + "php": ">=7.3.0", "ext-pdo_mysql": "*", "ext-openssl": "*", "ext-json": "*",