berry/htmx

HTMX extension for berry/html

Installs: 260

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 2

pkg:composer/berry/htmx

v0.4.4 2026-02-04 14:57 UTC

This package is auto-updated.

Last update: 2026-02-04 14:58:19 UTC


README

HTMX extension for berry/html

Usage

Install via composer

$ composer req berry/htmx
<?php

function renderCounterButton(int $value): Element
{
    return button()
        ->hxPost("/counter/{$value + 1}")
        ->hxSwap(HxSwap::OuterHTML)
        ->text("+$value");
}

PHPStan

If you're using phpstan (you should), you will also need to install phpstan/extension-installer so that the extension methods are automatically detected.

License

MIT