awesome framework core
1.0.0
examples/
src/
tests/
vendor/
Via Composer
$ composer require jjuanrivvera/awesome-framework-core// Bootstrap application
$app = new AwesomeApp(
config: new AwesomeConfig(dirname(__FILE__) . '/config'), // Set config, optional
routesPath: dirname(__FILE__) . '/routes/*.php', // Set routes path, optional
viewPath: './App/Views', // Set views path, optional
isCli: false // Define if the application is running as CLI, default false
);
// Initialize application
$app->init();
// Run application
return $app->run();Please see CHANGELOG for more information on what has changed recently.
$ composer testPlease see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.