-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathautoloader.php
41 lines (35 loc) · 1.57 KB
/
autoloader.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
+------------------------------------------------------------------------+
| Phosphorum |
+------------------------------------------------------------------------+
| Copyright (c) 2013-present Phalcon Team and contributors |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
*/
/**
* @const APP_START_TIME The start time of the application, used for profiling
*/
define('APP_START_TIME', microtime(true));
/**
* @const APP_START_MEMORY The memory usage at the start of the application, used for profiling
*/
define('APP_START_MEMORY', memory_get_usage());
/**
* @const BASE_PATH Base path to project directory
*/
defined('BASE_PATH') || define('BASE_PATH', realpath(dirname(dirname(__FILE__))));
// Then register the Composer autoloader
require dirname(__DIR__) . '/vendor/autoload.php';
// Load environment
try {
(new Dotenv\Dotenv(dirname(app_path())))->load();
} catch (Dotenv\Exception\InvalidPathException $e) {
// Skip
}