Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

bootstrap.php 302B

123456789101112131415
  1. <?php
  2. use Luticate\Utils\Controller\LuticateApplication;
  3. require_once __DIR__ . '/../vendor/autoload.php';
  4. $json = file_get_contents(__DIR__ . '/../config.json');
  5. $config = json_decode($json, true);
  6. $app = new LuticateApplication($config);
  7. $app->setVersion(1.0);
  8. $app->setupRoutes();
  9. return $app;