mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 21:17:53 +00:00
b4cf10fc94
This reverts commit be5f4ef6b19c82f6c898708cc8e1828b05e3d4e8, reversing
changes made to 638fe6971c
.
20 lines
517 B
PHP
20 lines
517 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');
|
|
|
|
$loader_path = __DIR__ . '/../vendor/autoload.php';
|
|
if (!file_exists($loader_path)) {
|
|
echo "Dependencies must be installed using composer:\n\n";
|
|
echo "php composer.phar install\n\n";
|
|
echo "See http://getcomposer.org for help with installing composer\n";
|
|
exit(1);
|
|
}
|
|
|
|
$loader = include $loader_path;
|
|
$loader->add('', __DIR__);
|