2017-10-01 13:33:49 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-10-01 13:33:49 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
|
|
|
const NS_BASE = __NAMESPACE__."\\";
|
|
|
|
define(NS_BASE."BASE", dirname(__DIR__).DIRECTORY_SEPARATOR);
|
2019-05-02 16:52:52 +00:00
|
|
|
const DOCROOT = BASE."tests".DIRECTORY_SEPARATOR."docroot".DIRECTORY_SEPARATOR;
|
2017-12-17 15:27:34 +00:00
|
|
|
ini_set("memory_limit", "-1");
|
2018-01-06 17:02:45 +00:00
|
|
|
error_reporting(\E_ALL);
|
2017-10-20 22:41:21 +00:00
|
|
|
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|