13 lines
278 B
PHP
13 lines
278 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Test runner bootstrap.
|
||
|
*
|
||
|
* Add additional configuration/setup your application needs when running
|
||
|
* unit tests in this file.
|
||
|
*/
|
||
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
||
|
|
||
|
require dirname(__DIR__) . '/config/bootstrap.php';
|
||
|
|
||
|
$_SERVER['PHP_SELF'] = '/';
|