This is the main source of the Minneola Framework. You can find a sample installation on https://github.com/Minneola/Foo.
- Tobias Maxham [email protected]
- Heiko Stark (former DengoPHP employee)
- Nobert For (former DengoPHP employee)
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();