0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00
PHPMailer/test/bootstrap.php
2017-01-06 22:27:49 +01:00

10 lines
240 B
PHP

<?php
if (file_exists('vendor/autoload.php')) {
require_once 'vendor/autoload.php';
} else {
require_once '../vendor/autoload.php';
}
spl_autoload_register(function ($class) {
require_once strtr($class, '\\_', '//').'.php';
});