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.dist (272B)


      1 <?php
      2 
      3 $filename = __DIR__.'/../vendor/autoload.php';
      4 
      5 if (!file_exists($filename)) {
      6     echo 'You must first install the vendors using composer.'.PHP_EOL;
      7     exit(1);
      8 }
      9 
     10 define('TEST_USER', get_current_user());
     11 define('TEST_PASSWORD', '1234');
     12 
     13 require_once $filename;