HTML components
Install the latest version with
$ composer require sy/html
<?php
use Sy\Component\Html\Page;
$page = new Page();
$page->setTitle('Page example');
$page->setBody('Hello world!');
echo $page;
Output:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Page example</title>
</head>
<body>
Hello world!
</body>
</html>