2016-09-27 13:00:02 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse;
|
2016-09-27 13:00:02 +00:00
|
|
|
|
|
|
|
const BASE = __DIR__.DIRECTORY_SEPARATOR;
|
2016-09-30 01:58:09 +00:00
|
|
|
const NS_BASE = __NAMESPACE__."\\";
|
2017-03-29 14:27:54 +00:00
|
|
|
const VERSION = "0.0.0";
|
2016-09-27 13:00:02 +00:00
|
|
|
|
2016-10-02 21:07:17 +00:00
|
|
|
if(!defined(NS_BASE."INSTALL")) define(NS_BASE."INSTALL", false);
|
|
|
|
|
2017-02-09 16:01:24 +00:00
|
|
|
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|
2017-03-07 23:01:13 +00:00
|
|
|
ignore_user_abort(true);
|
|
|
|
iconv_set_encoding("internal_encoding", "UTF-8");
|