mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-26 06:07:35 +08:00
modified: .phpunit.result.cache modified: phpunit.xml s modified: update-api/app/Core/Router.php modified: update-api/storage/test.sqlite
11 lines
305 B
PHP
11 lines
305 B
PHP
<?php
|
|
// PHPUnit bootstrap wrapper moved into .github directory to keep repo root clean.
|
|
$autoload = __DIR__ . '/../vendor/autoload.php';
|
|
if (file_exists($autoload)) {
|
|
require_once $autoload;
|
|
}
|
|
|
|
$local = __DIR__ . '/../tests/bootstrap-local.php';
|
|
if (file_exists($local)) {
|
|
require_once $local;
|
|
}
|