forked from projects/fipamo
b092645733
I didn't like the extra step that had to be taken to register new classes from the command line using composer's auto dump, so a quick script was implemented to handle Fipamo loading classes seperately so composer can manage itself, removing the need for updating it whenever I add a new classs to the codebase
12 lines
164 B
PHP
12 lines
164 B
PHP
<?php
|
|
|
|
//load Composer Classes
|
|
require '../vendor/autoload.php';
|
|
//load Fipamo Classes
|
|
require '../brain/_loader.php';
|
|
|
|
use brain\init\App;
|
|
|
|
//start app
|
|
new App();
|