index.php 283 B

123456789
  1. <?php
  2. error_reporting(E_ALL);
  3. define('DS', DIRECTORY_SEPARATOR);
  4. define('ROOT', __DIR__.DS.'app'.DS);
  5. $config=include_once ROOT.'config/config.php';
  6. require_once ROOT.'./../vendor/autoload.php';
  7. require_once ROOT.'config/services_.php';
  8. \Ubiquity\controllers\Startup::run($config);