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;