<?php

/*
 _______   _______  __      .___________.    ___      .______    __    __       _______. __  .__   __.  _______     _______.     _______.
|       \ |   ____||  |     |           |   /   \     |   _  \  |  |  |  |     /       ||  | |  \ |  | |   ____|   /       |    /       |
|  .--.  ||  |__   |  |     `---|  |----`  /  ^  \    |  |_)  | |  |  |  |    |   (----`|  | |   \|  | |  |__     |   (----`   |   (----`
|  |  |  ||   __|  |  |         |  |      /  /_\  \   |   _  <  |  |  |  |     \   \    |  | |  . `  | |   __|     \   \        \   \    
|  '--'  ||  |____ |  `----.    |  |     /  _____  \  |  |_)  | |  `--'  | .----)   |   |  | |  |\   | |  |____.----)   |   .----)   |   
|_______/ |_______||_______|    |__|    /__/     \__\ |______/   \______/  |_______/    |__| |__| \__| |_______|_______/    |_______/    

*/

ini_set('display_errors', 'On');
error_reporting(E_ALL);
date_default_timezone_set('Europe/Lisbon');
ini_set('memory_limit', '4096M');
ini_set('upload_max_filesize', '500M');

// IN-293 Using HTTP only cookie and increase security
ini_set('session.cookie_httponly', '1');
ini_set('default_socket_timeout', 600);
header('X-Frame-Options: DENY');

// Require the BeevoBootstrapper class
include_once __DIR__."/beevo/BootResolver/RequestHandler.php"; 
