vardumper / extended-htmldocument
ExtendedHTMLDocument is a simple PHP library which adds all HTML5 Elements as PHP classes and extends PHP 8.4's DOM\HTMLDocument class.
Fund package maintenance!
vardumper
Buymeacoffee
www.patreon.com/vardumper
Requires
- php: ^8.4
- revolt/event-loop: ^1.0.7
Requires (Dev)
- amphp/file: >=3.2
- brainmaestro/composer-git-hooks: dev-master
- friendsofphp/php-cs-fixer: ^3.73.1
- mnapoli/silly: ^1.9.1
- pestphp/pest: ^3.7.4
- pestphp/pest-plugin-drift: ^3.0
- pestphp/pest-plugin-type-coverage: ^3.4
- phpmd/phpmd: ^2.15
- phpstan/phpstan: ^2.1.8
- rector/swiss-knife: ^2.1.15
- symfony/yaml: ^7.2.3
- symplify/easy-coding-standard: ^12.5.9
README
Extended HTML Document Library
This library provides a way to work with HTML elements in PHP, offering an object-oriented approach that aligns with the HTML5 specifications. It also provides a way to automatically transform HTML into different templating engines or code for frontend frameworks. It also adds autocompletion to PHP for all HTML5 elements, which is especially useful when working with DOM Documents. It adds additional functionality and a stronger focus on HTML5 while being fully compatible with PHP's DOM\HTMLDocument and DOM\HTMLElement classes.
TL;DR
This library adds the HTML5 specification to PHP and is fully compatible with DOM\HTMLDocument
. You can create an Anchor()
object and append it to any DOM\Document
.
use Html\Delegator\HTMLDocumentDelegator as HTMLDocument; use Html\Element\Inline\Anchor; $dom = HTMLDocument::createEmpty() echo (string) Anchor::create($dom) ->setClass('secondary') ->setRel(RelEnum::NOFOLLOW) ->setHref('https://google.com') ->setTitle('Google it'); // output is: // <a class="secondary" href="https://google.com" rel="nofollow" title="Google it"></a>
Documentation
See the Documentation for more.
Installation
composer require --dev vardumper/extended-htmldocument