mh / pageseo
Nifty library to keep your SEO tags clean
1.0.6
2019-10-08 19:35 UTC
Requires
- php: >=5.3.3
- chriskonnertz/open-graph: ^1.0
- mh/json-ld: ^1.0
Requires (Dev)
- phpunit/phpunit: ^8.0
- symfony/var-dumper: ^4.3
README
This is a nifty toolkit to keep your SEO tags clean.
Developed by Michael Holm
<?php
use PageSEO\PageSEO;
require_once(__DIR__.'/vendor/autoload.php');
$seo = new PageSEO;
$title = $seo->title(
'product',
[
'name' => 'Canon Z1000',
'brand' => 'Canon',
],
'en'
);
var_dump($title);