1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-18 17:10:33 +00:00
Arsse/bootstrap.php

10 lines
249 B
PHP
Raw Normal View History

2016-09-27 09:00:02 -04:00
<?php
declare(strict_types=1);
2017-03-27 23:12:12 -05:00
namespace JKingWeb\Arsse;
2016-09-27 09:00:02 -04:00
const BASE = __DIR__.DIRECTORY_SEPARATOR;
const NS_BASE = __NAMESPACE__."\\";
2017-08-20 14:38:24 -04:00
const VERSION = "0.1.0";
2016-09-27 09:00:02 -04:00
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
ignore_user_abort(true);