commit 363da1629401aa9ad6107ed76ad002af38ee0ade
parent c17da68c1a5911c79390f6f002fcd3a278ad067f
Author: markseu <mark2011@mayberg.se>
Date: Sat, 23 Feb 2019 15:06:52 +0100
Datenstrom Yellow requires PHP 5.5 or higher
Diffstat:
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/.travis.yml b/.travis.yml
@@ -6,9 +6,8 @@ php:
- 7.0
- 5.6
- 5.5
- - 5.4
before_script:
- - echo "StaticUrl:http://website/" >> system/config/config.ini
- - php yellow.php version
+ - echo "StaticUrl:http://website/" >> system/settings/system.ini
+ - php yellow.php about
script:
- php yellow.php build test
diff --git a/yellow.php b/yellow.php
@@ -1,13 +1,13 @@
<?php
-// Datenstrom Yellow is for people who make websites. https://datenstrom.se/yellow/
-// Copyright (c) 2013-2018 Datenstrom, https://datenstrom.se
+// Datenstrom Yellow is for people who make websites, https://datenstrom.se/yellow/
+// 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.4", ">=") || die("Datenstrom Yellow requires PHP 5.4 or higher!");
+version_compare(PHP_VERSION, "5.5", ">=") || die("Datenstrom Yellow requires PHP 5.5 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!");
-require_once("system/plugins/core.php");
+require_once("system/extensions/core.php");
if (PHP_SAPI!="cli") {
$yellow = new YellowCore();