. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Middleland\Dispatcher; require __DIR__ . '/vendor/autoload.php'; // Create the application. $application = new Webtrees(); $application->bootstrap(); // Select a PSR message factory. $application->selectMessageFactory(); // The application is defined by a stack of middleware and a PSR-11 container. $middleware = $application->middleware(); $container = app(); $dispatcher = new Dispatcher($middleware, $container); // Convert the GET, POST, COOKIE variables into a request. $request = $application->createServerRequest(); $dispatcher->dispatch($request);