This is the main source of the Minneola Framework. You can find a sample installation on https://github.com/Minneola/Foo.
composer require minneola/testfoo
We will provide a full documentation on the Wiki section of GitHub. You can find it here: Full Wiki Documentation While we work on it here is a short one for getting started.
<?php
require __DIR__ . '/vendor/autoload.php';
$app = new \Minneola\TestFoo\Core\Application(realpath(__DIR__.'/../'));
$app->boot();
$app->run();