Added autoload.php to the index.php file.
This commit is contained in:
parent
b3f9eacc9d
commit
911c884cbc
1 changed files with 14 additions and 1 deletions
|
@ -14,6 +14,19 @@
|
||||||
require_once __DIR__ . '/config.php';
|
require_once __DIR__ . '/config.php';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
*---------------------------------------------------------------
|
||||||
|
* COMPOSER AUTOLOAD FILE
|
||||||
|
*---------------------------------------------------------------
|
||||||
|
*
|
||||||
|
* Include Composer's autoload.php file so that I can use external
|
||||||
|
* libraries directly in every section of the application.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once __DIR__ . '/application/third_party/autoload.php';
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*---------------------------------------------------------------
|
*---------------------------------------------------------------
|
||||||
* APPLICATION ENVIRONMENT
|
* APPLICATION ENVIRONMENT
|
||||||
|
|
Loading…
Reference in a new issue