-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
executable file
·25 lines (24 loc) · 1.1 KB
/
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
<?php
/**
* Karmate Flexiable PHP Framework
*
*
* @category KARMATE
* @package Framework
* @author Berkay Karataş <berkaykarats@icloud.com>
* @copyright 2017
* @license http://www.php.net/license/3_01.txt The MIT License
* @version Release: @1.0.0@
* For the current version and documentation of the package:
* @link https://karmate.org
*/
define('_INDEX_', basename($_SERVER['SCRIPT_FILENAME']));
//----------------------------------------------------------------------------------------------------
// Include KARMATE kernel
//----------------------------------------------------------------------------------------------------
require_once __DIR__.DIRECTORY_SEPARATOR.'kernel'.'.php';
//----------------------------------------------------------------------------------------------------
// Run kernel |*| for stop => Kernel(0); |*|
//----------------------------------------------------------------------------------------------------
#Will be include apps and inner kernel
new Karmate\Kernel('1');