osynapsy / osynapsy-html
Osynapsy html library
Installs: 70
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/osynapsy/osynapsy-html
Requires
- php: >=7.2.0
This package is auto-updated.
Last update: 2025-10-05 21:25:26 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-html "@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>