sushilk/phx

A modern PHP frontend rendering and reactive UI library inspired by JSX, HTMX, Livewire, and server-driven UI concepts

Maintainers

Package info

github.com/codebysushil/phx

Homepage

pkg:composer/sushilk/phx

Fund package maintenance!

CodeWithSushil

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-main 2026-05-13 09:58 UTC

This package is auto-updated.

Last update: 2026-05-13 09:59:02 UTC


README

A modern PHP frontend rendering and reactive UI library inspired by JSX, HTMX, Livewire, and server-driven UI concepts.

⚠️ WARNING: DEVELOPMENT PHASE

Warning

PHX is currently in active development and is NOT production ready yet.

Features, APIs, folder structure, rendering behavior, and runtime internals may change at any time without backward compatibility.

Current Status

  • Experimental runtime
  • Internal APIs may break
  • Incomplete documentation
  • Performance optimizations in progress
  • Security audit not completed
  • Some features are unstable or partially implemented

Use this library only for:

  • Learning
  • Experimentation
  • Local projects
  • Prototype applications
  • Contributing and testing

Do NOT use PHX in critical production systems yet.

Features

  • JSX-like PHP syntax
  • Reactive server-side rendering
  • HTMX-friendly architecture
  • Zero JavaScript optional components
  • Blade-like templating concepts
  • Component-based UI
  • Lightweight runtime
  • PHP-first developer experience

Installation

composer require sushilk/phx

Example

<?php

use PHX\Component;

class Button extends Component
{
    public function render(): string
    {
        return <<<HTML
            <button class="btn">
                Click Me
            </button>
        HTML;
    }
}