touta/toutaphp

Thin integration framework for the Touta PHP ecosystem

Maintainers

Package info

github.com/toutaio/toutaphp

pkg:composer/touta/toutaphp

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-03-21 03:40 UTC

This package is auto-updated.

Last update: 2026-03-21 03:41:48 UTC


README

Thin integration framework for the Touta PHP ecosystem. Boots a tiny app using ARIA-based packages.

Install

composer require touta/toutaphp

Usage

use Touta\Framework\App;
use Touta\Eolas\ArrayLoader;

$app = App::create(new ArrayLoader(['app' => ['name' => 'MyApp']]));

$app->routes()->get('/hello/{name}', function (string $name): array {
    return ['message' => "Hello, {$name}!"];
});

$response = $app->handle('GET', '/hello/world');

License

MIT