2018-04-23 14:21:25 -04:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2018 J. King et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-12-20 20:56:59 -05:00
|
|
|
namespace MensBeam\Intl;
|
2018-04-23 14:21:25 -04:00
|
|
|
|
|
|
|
const NS_BASE = __NAMESPACE__."\\";
|
|
|
|
define(NS_BASE."BASE", dirname(__DIR__).DIRECTORY_SEPARATOR);
|
|
|
|
ini_set("memory_limit", "-1");
|
|
|
|
error_reporting(\E_ALL);
|
|
|
|
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|
2019-12-13 11:00:25 -05:00
|
|
|
|
|
|
|
if (function_exists("xdebug_set_filter")) {
|
2024-12-27 07:23:00 -05:00
|
|
|
if (defined("XDEBUG_PATH_INCLUDE")) {
|
|
|
|
xdebug_set_filter(\XDEBUG_FILTER_CODE_COVERAGE, XDEBUG_PATH_INCLUDE, [BASE."lib/"]);
|
|
|
|
} else {
|
|
|
|
xdebug_set_filter(\XDEBUG_FILTER_CODE_COVERAGE, XDEBUG_PATH_WHITELIST, [BASE."lib/"]);
|
|
|
|
}
|
2019-12-13 11:00:25 -05:00
|
|
|
}
|