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.

bootstrap.php 344B

1234567891011121314
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 5/29/16
  6. * Time: 2:59 PM
  7. */
  8. use Luticate\Utils\Controller\LuticateApplication;
  9. $json = file_get_contents(__DIR__ . '/config.json');
  10. $config = json_decode($json, true);
  11. $app = new LuticateApplication($config);
  12. $app->addDatabaseProvider(\Luticate\Utils\DataAccess\LuDataAccess::class);