PHPackages                             utlime/seo-meta-tags - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. utlime/seo-meta-tags

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

utlime/seo-meta-tags
====================

Social Meta Tags: Open Graph Tags, Facebook, Twitter, LinkedIn, Google+, Pinterest and etc

2.0.0(3y ago)913.5k5MITPHPPHP ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1

Since Jul 12Pushed 3y ago2 watchersCompare

[ Source](https://github.com/utlime/php-seo-meta-tags)[ Packagist](https://packagist.org/packages/utlime/seo-meta-tags)[ RSS](/packages/utlime-seo-meta-tags/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (8)Used By (0)

utlime/seo-meta-tags
====================

[](#utlimeseo-meta-tags)

Library for building seo tags

Supported social meta tags, such Open Graph Tags, Facebook, Twitter, LinkedIn, Google+, Pinterest and etc

Specifications and helpful links
--------------------------------

[](#specifications-and-helpful-links)

Installation
------------

[](#installation)

You can install directly via Composer:

```
$ composer require "utlime/seo-meta-tags":"^2.0"
```

Basic usage
-----------

[](#basic-usage)

```
$builder = new BuilderDelegate(
   new CommonBuilder(),
   new TwitterBuilder(),
   new OpenGraphBuilder()
);

$header_chunk = $builder
    ->add('title', 'your title')
    ->add('description', 'your description')
    ->add('language', 'your language')
    ->add('canonical', 'your canonical url')
    ->add('image', 'your image url')
    ->build();
```

As result you will have the follow

```
your title

```

Extending
---------

[](#extending)

For extending or modifying you just need to implement interface

```
