bootstrap.php (357B)
1 <?php 2 include_once('AutoLoader.php'); 3 AutoLoader::registerDirectory('tests'); 4 5 $filename = __DIR__.'/../libs/php-ssh/vendor/autoload.php'; 6 7 if (!file_exists($filename)) { 8 echo 'You must first install the vendors using composer.'.PHP_EOL; 9 exit(1); 10 } 11 12 define('TEST_USER', get_current_user()); 13 define('TEST_PASSWORD', '1234'); 14 15 require_once $filename;