mh/pageseo

Nifty library to keep your SEO tags clean

1.0.6 2019-10-08 19:35 UTC

This package is auto-updated.

Last update: 2024-04-09 05:52:24 UTC


README

This is a nifty toolkit to keep your SEO tags clean.

Build Status Scrutinizer Quality Score Scrutinizer Code Intelligence

Latest Release MIT License Total Downloads

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);