rinodrummer / tempest-framework

The PHP framework that gets out of your way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The PHP framework that gets out of your way.

Read how to get started with Tempest here.

Zero config, zero overhead. This is Tempest:

final readonly class BookController
{
    #[Get('/blog')]
    public function index() { /* … */ }
    
    #[Get('/blog/{post}')]
    public function show(Post $post) { /* … */ }
}

final readonly class RssSyncCommand
{
    public function __construct(private Console $console) {}

    #[ConsoleCommand('rss:sync')]
    public function __invoke(bool $force = false)  { /* … */ }
}

About

The PHP framework that gets out of your way.

License:MIT License


Languages

Language:PHP 100.0%