J. King
757f2af343
- avoid iconv for now; causes problems with a nil-config server - Set executable bit on Unix test runner
12 lines
No EOL
316 B
PHP
12 lines
No EOL
316 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
const BASE = __DIR__.DIRECTORY_SEPARATOR;
|
|
const NS_BASE = __NAMESPACE__."\\";
|
|
const VERSION = "0.0.0";
|
|
|
|
if(!defined(NS_BASE."INSTALL")) define(NS_BASE."INSTALL", false);
|
|
|
|
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|
|
ignore_user_abort(true); |