-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (24 loc) · 859 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?
/**
* Softhing Framework
*
* LICENSE
*
* Esse código e demais pertencentes à Softhing Developers S/S
* são de uso exclusivo, somente funcionários da empresa podem dar manutenção,
* qualquer outra pessoa que venha a alterar/editar qualquer linha do código
* pode ser processada por violar os direitos autorais.
*
* @category Softhing
* @copyright Copyright(c) Softhing Developers S/S BR Inc. (http://www.softhing.com.br)
* @license Utilização restrita a Softhing Developers S/S
* @version 2016-09-23
* @author Thyago Ghelere "[email protected]"
*/
require_once('vendor/autoload.php');
require_once('vendor/mobiledetect/mobiledetectlib/Mobile_Detect.php');
$detect = new Mobile_Detect;
$dotenv = new Dotenv\Dotenv(__DIR__);
$dotenv->load();
require_once('system/config.php');
require_once('system/setup.php');