File "bootstrap.php"

Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/mdanter/ecc/tests/bootstrap.php
File size: 1.24 KB
MIME-type: text/x-php
Charset: utf-8

<?php

function buildPath()
{
    return implode(DIRECTORY_SEPARATOR, func_get_args());
}

gc_disable();

define('TEST_DATA_DIR', buildPath(__DIR__, 'data'));

if (getenv('MATH_LIB') === false) {
    echo 'MATH_LIB env var is not defined, defaulting to GMP'.PHP_EOL;
    define('MATH_LIB', 'gmp');
} else {
    define('MATH_LIB', getenv('MATH_LIB'));
}

include buildPath(__DIR__, '..', 'vendor', 'autoload.php');

$requiredNestingLevel = 150;

if (extension_loaded('xdebug')) {
    $currentNestingLevel = intval(ini_get('xdebug.max_nesting_level'));

    if ($currentNestingLevel < $requiredNestingLevel) {
        fwrite(STDERR, <<<TEXT

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IMPORTANT NOTICE:
It seems like you have the xdebug extension loaded.
To use phpecc you have to increase the maximum nesting level from $currentNestingLevel to at least $requiredNestingLevel
You can do this by adding the following line to your php.ini:

xdebug.max_nesting_level = $requiredNestingLevel

The tests will now run with this setting.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


TEXT
        );
        ini_set('xdebug.max_nesting_level', $requiredNestingLevel);
    }
}