/home/ivoiecob/email.hirewise-va.com/system/bootstrap.php
<?php

use Aurora\Api;

require_once __DIR__ . "/autoload.php";
require_once __DIR__ . "/../vendor/autoload.php";

$container = Api::GetContainer();

if (!function_exists('base_path')) {
    function base_path($dir = '')
    {
        return AU_APP_ROOT_PATH . $dir;
    }
}

if (!function_exists('str_ends_with')) {
    function str_ends_with($haystack, $needle)
    {
        return substr_compare($haystack, $needle, -strlen($needle)) === 0;
    }
}

class Eloquent extends \Illuminate\Database\Eloquent\Model {}