2024-04-15 11:38:59 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/EmptyPHP.php to edit this template
|
|
|
|
*/
|
|
|
|
|
|
|
|
define("PROJECT_ROOT_PATH", __DIR__ . "/../");
|
2024-05-20 14:45:54 -05:00
|
|
|
define('PD', 'D:\Programs\UniformServer\UniServerZ\www\CustomerRewardsRESTAPI');
|
2024-05-16 19:55:18 -05:00
|
|
|
//define('PD', 'C:\DEV\UniServerZ\www\CustomerRewardsRESTAPI');
|
2024-05-20 14:45:54 -05:00
|
|
|
|
2024-04-15 11:38:59 -05:00
|
|
|
// include main configuration file
|
|
|
|
require_once PROJECT_ROOT_PATH . "/include/config.php";
|
2024-05-20 14:45:54 -05:00
|
|
|
|
2024-04-15 11:38:59 -05:00
|
|
|
// include the base controller file
|
|
|
|
require_once PROJECT_ROOT_PATH . "/Controller/Api/BaseController.php";
|
2024-05-20 14:45:54 -05:00
|
|
|
|
2024-05-01 15:03:43 -05:00
|
|
|
// include the tests autoloader when in development
|
|
|
|
//require_once __DIR__ . '/../vendor/autoload.php';
|