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.

13 lines
295 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. require dirname(__FILE__).'/../config.php';
  7. } else {
  8. class Config {
  9. public static $cache = false;
  10. }
  11. }