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.

11 lines
373 B

8 years ago
  1. <?php
  2. require_once __DIR__ . '/../src/functions.php';
  3. spl_autoload_register(function($class) {
  4. if (strpos($class, 'FastRoute\\') === 0) {
  5. $dir = strcasecmp(substr($class, -4), 'Test') ? 'src/' : 'test/';
  6. $name = substr($class, strlen('FastRoute'));
  7. require __DIR__ . '/../' . $dir . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
  8. }
  9. });