gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

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;