1 |
www |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
use Laminas\Mvc\Application;
|
|
|
6 |
use Laminas\Stdlib\ArrayUtils;
|
|
|
7 |
|
15540 |
efrain |
8 |
define('DEPLOY_DIR', dirname(__DIR__));
|
1 |
www |
9 |
//define('SITE_URL', 'http://' . $_SERVER['SERVER_NAME'] . '/');
|
|
|
10 |
//date_default_timezone_set('Etc/GMT+6');
|
|
|
11 |
|
|
|
12 |
ini_set('display_errors', '1');
|
|
|
13 |
ini_set('display_startup_errors', '1');
|
|
|
14 |
error_reporting(E_ALL);
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* This makes our life easier when dealing with paths. Everything is relative
|
|
|
19 |
* to the application root now.
|
|
|
20 |
*/
|
|
|
21 |
chdir(dirname(__DIR__));
|
|
|
22 |
|
|
|
23 |
// Decline static file requests back to the PHP built-in webserver
|
|
|
24 |
if (php_sapi_name() === 'cli-server') {
|
|
|
25 |
$path = realpath(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
|
|
|
26 |
if (is_string($path) && __FILE__ !== $path && is_file($path)) {
|
|
|
27 |
return false;
|
|
|
28 |
}
|
|
|
29 |
unset($path);
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
// Composer autoloading
|
|
|
33 |
include __DIR__ . '/../vendor/autoload.php';
|
|
|
34 |
|
|
|
35 |
if (! class_exists(Application::class)) {
|
|
|
36 |
throw new RuntimeException(
|
|
|
37 |
"Unable to load application.\n"
|
|
|
38 |
. "- Type `composer install` if you are developing locally.\n"
|
|
|
39 |
. "- Type `vagrant ssh -c 'composer install'` if you are using Vagrant.\n"
|
|
|
40 |
. "- Type `docker-compose run lamians composer install` if you are using Docker.\n"
|
|
|
41 |
);
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
// Retrieve configuration
|
|
|
45 |
$appConfig = require __DIR__ . '/../config/application.config.php';
|
|
|
46 |
if (file_exists(__DIR__ . '/../config/development.config.php')) {
|
|
|
47 |
$appConfig = ArrayUtils::merge($appConfig, require __DIR__ . '/../config/development.config.php');
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
// Run the application!
|
|
|
51 |
Application::init($appConfig)->run();
|