forked from anchorcms/anchor-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·37 lines (33 loc) · 885 Bytes
/
index.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
<?php
/*
/ \
| o |
\ /
________) (________
| |
'------. .------'
| |
| |
| |
| |
/\ | | /\
/_ \ / \ / _\
\ '. .' '. .' /
\ '--' '--' /
'. .'
'._ _.'
`'-. .-'`
\ /
*/
define('DS', DIRECTORY_SEPARATOR);
define('ENV', getenv('APP_ENV'));
define('VERSION', '0.13.1');
define('MIGRATION_NUMBER', 220);
define('PATH', __DIR__ . DS);
define('APP', PATH . 'anchor' . DS);
define('SYS', PATH . 'system' . DS);
define('EXT', '.php');
/** @noinspection PhpIncludeInspection */
require APP . 'composer_check' . EXT;
/** @noinspection PhpIncludeInspection */
require SYS . 'start' . EXT;