From 59ebf979f06d60859d582f8651d5f1c20c8da47d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Tue, 31 Oct 2017 10:36:18 +0100
Subject: [PATCH] :ambulance: fix(core): Bump minimum PHP version to 5.6

This bumps minimum PHP version to 5.6.0 to avoid problems like the crash
 we got of PHP 5.4 when using empty() on a function return.
This may also allow us to use new PHP feature in 1.4.
5.4 and 5.5 are officially EOL.

close #5725
---
 include/variables_common.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/variables_common.inc b/include/variables_common.inc
index 29d05f641..8a8a3b800 100644
--- a/include/variables_common.inc
+++ b/include/variables_common.inc
@@ -73,7 +73,7 @@ define ("CONFIGRDN", "cn=config,ou=fusiondirectory,"); /*! Define FusionDirector
 /*!
  * \brief Minimum PHP version
  */
-define ("PHP_MIN_VERSION", "5.4.0");
+define ('PHP_MIN_VERSION', '5.6.0');
 
 /*!
  * \brief Toggle crashing on PHP error, used for test suites
-- 
GitLab