commit b5a472006cb12d6b527a2aa639f1ade484edc2d0
parent 44b711b1ffbef02084b9a844a376d8fabd8290cc
Author: markseu <mark2011@mayberg.se>
Date: Thu, 15 Aug 2019 12:41:56 +0200
Datenstrom Yellow requires PHP 5.6 or higher
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
@@ -5,7 +5,6 @@ php:
- 7.1
- 7.0
- 5.6
- - 5.5
before_script:
- echo "StaticUrl:http://website/" >> system/settings/system.ini
- php yellow.php about
diff --git a/yellow.php b/yellow.php
@@ -3,7 +3,7 @@
// Copyright (c) 2013-2019 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license.
-version_compare(PHP_VERSION, "5.5", ">=") || die("Datenstrom Yellow requires PHP 5.5 or higher!");
+version_compare(PHP_VERSION, "5.6", ">=") || die("Datenstrom Yellow requires PHP 5.6 or higher!");
extension_loaded("mbstring") || die("Datenstrom Yellow requires PHP mbstring extension!");
extension_loaded("curl") || die("Datenstrom Yellow requires PHP cURL extension!");
extension_loaded("zip") || die("Datenstrom Yellow requires PHP zip extension!");