index.php 268 B

12345678910111213
  1. <?php
  2. use Symfony\Component\Debug\Debug;
  3. require_once __DIR__ . '/../../vendor/autoload.php';
  4. Debug::enable();
  5. $app = require __DIR__ . '/../../src/boot.php';
  6. require __DIR__ . '/../../config/dev.php';
  7. require __DIR__ . '/../../src/controllers.php';
  8. $app->run();