Skip to content

Commit

Permalink
Update compatibility test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Nov 10, 2015
1 parent fa6adc0 commit b177a5e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions compatibility-test.php
Expand Up @@ -140,12 +140,6 @@ function () {

$c->title('System recommendations');

$c->addRecommend(
'Checking if PHP version is >= 5.4.1',
function () { return version_compare(phpversion(), '5.4.1', '>='); },
'You are using an older version of PHP (' . phpversion() . '). Consider updating to PHP 5.4.1 or newer to improve the performance and stability of the SDK.'
);

$c->addRecommend('Checking if you are running on a 64-bit platform', function () {
return PHP_INT_MAX === 9223372036854775807;
}, 'You are not running on a 64-bit installation of PHP. You may run into issues uploading or downloading files larger than 2GB.');
Expand All @@ -163,7 +157,6 @@ function () { return version_compare(phpversion(), '5.4.1', '>='); },

$c->extCheck('openssl', false);
$c->extCheck('zlib', false);
$c->extCheck('uri_template', false, 'Installing the uri_template extension will make the SDK faster. Install using pecl install uri_template-alpha');
$c->iniCheck('Checking if OPCache is enabled', 'opcache.enable', 1, false);

$c->title('PHP information');
Expand Down

0 comments on commit b177a5e

Please sign in to comment.