index.php (491B)
1 <?php 2 3 /** 4 * A super-simple user-authentication solution, embedded into a small framework. 5 * 6 * HUGE 7 * 8 * @link https://github.com/panique/huge 9 * @license http://opensource.org/licenses/MIT MIT License 10 */ 11 12 // auto-loading the classes (currently only from application/libs) via Composer's PSR-4 auto-loader 13 // later it might be useful to use a namespace here, but for now let's keep it as simple as possible 14 require '../vendor/autoload.php'; 15 16 // start our application 17 new Application();