composer update

This commit is contained in:
Oliver Davies 2019-01-24 08:00:03 +00:00
parent f6abc3dce2
commit 71dfaca858
1753 changed files with 45274 additions and 14619 deletions

View file

@ -1,9 +1,8 @@
<?php
require "vendor/autoload.php";
require 'vendor/autoload.php';
use Masterminds\HTML5;
$html = <<< 'HERE'
<html>
<head>
@ -28,6 +27,6 @@ HERE;
$html5 = new HTML5();
$dom = $html5->loadHTML($html);
print "Converting to HTML 5\n";
echo "Converting to HTML 5\n";
$html5->save($dom, fopen("php://stdin", 'w'));
$html5->save($dom, fopen('php://stdin', 'w'));