index.php 291 B

12345678910111213
  1. <?php
  2. require __DIR__ . '/../vendor/autoload.php';
  3. use Adepto\Slim3Init\{
  4. SlimInit
  5. };
  6. $slim = new SlimInit();
  7. $slim
  8. ->addHandlersFromDirectory(__DIR__ . '/../handler')
  9. //One of the two preconditions to get more details on requests.
  10. //->setDebugHeader('Debug', '1')
  11. ->run();