Search by

doi6doi / vygu

doi6doi

GUI support for PHP with various backends

Package info

github.com/Doi6doi/vygu

pkg:composer/doi6doi/vygu

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1 2026-09-10 16:47 UTC

This package is auto-updated.

Last update: 2026-09-17 00:38:37 UTC


README

A platform independent library to add GUI support for PHP

Read the Wiki for more information.

The library intends to be small and easy to use. A Hello World application is just a few lines:

$w = new Window([
   Window::TITLE=>"Hello",
   Window::MAIN=>true,
   Group::LAYOUT=>[Layout::class,"center"]
]);
$w->add( new Label("Hello, World!") );
Vygu::ins()->run();