osynapsy/osynapsy-html2

Osynapsy html library

Installs: 242

Dependents: 12

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/osynapsy/osynapsy-html2

1.0 2025-09-19 20:09 UTC

This package is auto-updated.

Last update: 2025-09-19 20:13:24 UTC


README

OsynapsyHtml is a library for build html tag and components in Php.

Installation

It's recommended that you use Composer to install osynapsy-html.

$ composer require osynapsy.net/osynapsy-html2 "@stable"

Usage

<?php

$div = new \Osynapsy\Html\Tag('div', 'div1', 'card');
$div->addClass('bg-white')->add('Test');

echo $div;

result

<div id="div1" class="card bg-white">Test</div>