-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
35 lines (31 loc) · 811 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
<?php
/*
/ \
| o |
\ /
________) (________
| |
'------. .------'
| |
| |
| |
| |
/\ | | /\
/_ \ / \ / _\
\ '. .' '. .' /
\ '--' '--' /
'. .'
'._ _.'
`'-. .-'`
\ /
*/
define('DS', DIRECTORY_SEPARATOR);
define('ENV', getenv('APP_ENV'));
define('VERSION', '0.12.1');
define('MIGRATION_NUMBER', 211);
define('PATH', dirname(__FILE__) . DS);
define('APP', PATH . 'anchor' . DS);
define('SYS', PATH . 'system' . DS);
define('EXT', '.php');
require APP . 'composer_check' . EXT;
require SYS . 'start' . EXT;