mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-25 11:20:03 +00:00
14 lines
393 B
PHP
14 lines
393 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Bootstrapping File for phpseclib Test Suite
|
||
|
*
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
*/
|
||
|
|
||
|
// 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/',
|
||
|
get_include_path(),
|
||
|
)));
|