Minimalist MVC framework for websites.
composer require acffdev/php-core
create an index.php file with the following code at the root of your public directory
// composer autoload
require_once __DIR__.'/vendor/autoload.php';
// namespace
use Acffdev\PhpCore\App as App;
// initializes
try {
App::run();
} catch(Exception $e) {
echo $e->getMessage();
}