0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00
PHPMailer/test/bootstrap.php
2015-11-10 19:09:08 +01:00

13 lines
249 B
PHP

<?php
/**
* PHPUnit bootstrap file
*/
ini_set('sendmail_path', '/usr/sbin/sendmail -t -i ');
require_once '../vendor/autoload.php';
spl_autoload_register(
function ($class) {
require_once strtr($class, '\\_', '//') . '.php';
}
);