mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 04:57:53 +00:00
32 lines
787 B
PHP
32 lines
787 B
PHP
<?php
|
|
/**
|
|
* Bootstrapping File for phpseclib Test Suite
|
|
*
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
// Set up include path accordingly. This is especially required because some
|
|
// class files of phpseclib require() other dependencies.
|
|
set_include_path(implode(PATH_SEPARATOR, array(
|
|
dirname(__FILE__) . '/../phpseclib/',
|
|
dirname(__FILE__) . '/',
|
|
get_include_path(),
|
|
)));
|
|
|
|
require_once 'Crypt/Random.php';
|
|
|
|
function phpseclib_autoload($class)
|
|
{
|
|
$file = str_replace('_', '/', $class) . '.php';
|
|
|
|
if (phpseclib_resolve_include_path($file)) {
|
|
// @codingStandardsIgnoreStart
|
|
require $file;
|
|
// @codingStandardsIgnoreEnd
|
|
}
|
|
}
|
|
|
|
spl_autoload_register('phpseclib_autoload');
|