35 lines
943 B
PHP
35 lines
943 B
PHP
<?php
|
|
|
|
use Laminas\Mvc\Application;
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
// Decline static file requests back to the PHP built-in webserver
|
|
if (php_sapi_name() === 'cli-server') {
|
|
$path = realpath(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
|
|
if (__FILE__ !== $path && is_file($path)) {
|
|
return false;
|
|
}
|
|
unset($path);
|
|
}
|
|
|
|
if(date_default_timezone_get() != ini_get('date.timezone')){
|
|
date_default_timezone_set('Europe/Luxembourg');
|
|
}
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
if (! class_exists(Application::class)) {
|
|
throw new RuntimeException(
|
|
"Unable to load application.\n"
|
|
. "- Type `composer install` if you are developing locally.\n"
|
|
);
|
|
}
|
|
|
|
$appConfig = require 'config/application.config.php';
|
|
if (file_exists('config/development.config.php')) {
|
|
$appConfig = Laminas\Stdlib\ArrayUtils::merge($appConfig, include 'config/development.config.php');
|
|
}
|
|
|
|
Application::init($appConfig)->run();
|