Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ignitetch
GitHub Repository: ignitetch/advphishing
Path: blob/master/PHPMailer/test/bootstrap.php
738 views
1
<?php
2
/**
3
* PHPUnit bootstrap file.
4
*/
5
ini_set('sendmail_path', '/usr/sbin/sendmail -t -i ');
6
if (file_exists('vendor/autoload.php')) {
7
require_once 'vendor/autoload.php';
8
} else {
9
require_once '../vendor/autoload.php';
10
}
11
12