You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
380 B

  1. <?php
  2. const TESTING = true;
  3. require __DIR__ . '/../vendor/autoload.php';
  4. // Load config file if present, otherwise use default
  5. if(file_exists(dirname(__FILE__).'/../config.php')) {
  6. include dirname(__FILE__).'/../config.php';
  7. } else {
  8. class Config
  9. {
  10. public static $cache = false;
  11. public static $base = '';
  12. public static $admins = [];
  13. }
  14. }