set required PHP version for master/17.1 to 5.6, recommended version to 7.0 and add 7.1 to Travis checks

This commit is contained in:
Ralf Becker 2017-08-18 10:22:52 +02:00
parent 8dba9967e3
commit c244e72017
3 changed files with 7 additions and 17 deletions

View File

@ -1,9 +1,8 @@
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- 7.0
- 7.1
- hhvm
matrix:
@ -28,23 +27,14 @@ before_script:
- sudo apt-get update -qq
- sudo apt-get install -y myrepos libpcre3-dev
- case $(phpenv version-name) in
"5.4")
php -m;
yes "" | pecl install memcache;
yes "" | pecl install apcu-4.0.11;
yes "" | pecl install igbinary;
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
phpenv config-rm xdebug.ini;
php -m;
;;
"5.5"|"5.6")
"5.6")
yes "" | pecl install memcache;
yes "" | pecl install apcu-4.0.11;
yes "" | pecl install igbinary;
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
phpenv config-rm xdebug.ini;
;;
"7")
"7.0"|"7.1")
yes "" | pecl install apcu;
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
phpenv config-rm xdebug.ini;

View File

@ -30,7 +30,7 @@ if (function_exists('get_magic_quotes_runtime') && get_magic_quotes_runtime())
set_magic_quotes_runtime(false);
}
$egw_min_php_version = '5.4';
$egw_min_php_version = '5.6';
if (!function_exists('version_compare') || version_compare(PHP_VERSION,$egw_min_php_version) < 0)
{
die("EGroupware requires PHP $egw_min_php_version or greater.<br />Please contact your System Administrator to upgrade PHP!");

View File

@ -65,13 +65,13 @@ class setup
*
* @var float
*/
var $required_php_version = 5.4;
var $required_php_version = 5.6;
/**
* PHP Version recommended for eGroupware
*
* @var string
*/
var $recommended_php_version = '5.6';
var $recommended_php_version = '7.0';
function __construct($html=False, $translation=False)
{