gitlab-com-adeattwood-pgrep/tests/_bootstrap.php
2018-03-26 21:51:56 +01:00

10 lines
242 B
PHP

<?php
// This is global bootstrap for autoloading
//
error_reporting(E_ALL);
if (is_file(__DIR__.'/../vendor/autoload.php')) {
require_once __DIR__.'/../vendor/autoload.php';
} else {
require_once __DIR__.'/../../../autoload.php';
}