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.

21 lines
564 B

  1. <?php
  2. const TESTING = true;
  3. require __DIR__ . '/../vendor/autoload.php';
  4. // TODO: fix the many things causing deprecation warnings!
  5. // For the moment, report all errors except for deprecation warnings during testing.
  6. error_reporting(E_ALL ^ E_DEPRECATED);
  7. // Load config file if present, otherwise use default
  8. if(file_exists(dirname(__FILE__).'/../config.php')) {
  9. include dirname(__FILE__).'/../config.php';
  10. } else {
  11. class Config
  12. {
  13. public static $cache = false;
  14. public static $base = '';
  15. public static $admins = [];
  16. }
  17. }