Download the PHP package jwebkid/metahelper without Composer

On this page you can find all versions of the php package jwebkid/metahelper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package metahelper

MetaHelper

This is a library which helps web developers to better manage Open Graph, Twitter Cards and HTML Meta Data enabling them to implement Search Engine Optimization easier.

Installation

Add the package to your composer.json and run composer update in your shell.

{
    require: {
        "jwebkid/metahelper": "dev-master"
    }
}

If you use Laravel you may also add an alias in your app/config/app.php file:

'aliases' => array(
    'App'             => 'Illuminate\Support\Facades\App',
    'Artisan'         => 'Illuminate\Support\Facades\Artisan',
    'Auth'            => 'Illuminate\Support\Facades\Auth',
    'Blade'           => 'Illuminate\Support\Facades\Blade',
    ...
    'MetaHelper'       => 'JWebKid\MetaHelper'
),

Quick Start

Example 1

<html lang="en">
<head>

...

Meta Data


MetaHelper library cater for the following meta tags:

Meta Tag Default Value HTML Displayed Syntax
Title null <title></title> $helper->title("")
Description null <meta name="description" content="" /> $helper->description("")
charset UTF-8 <meta charset=""/> $helper->charset("")
Next null <link rel="next" href="" /> $helper->next("")
Prev null <link rel="prev" href="" /> $helper->prev("")
Canonical null <link rel="canonical" href="" /> $helper->canonical("")

Open Graph

As mentioned, you can easily use MetaHelper to display Open Graph information about your web page.

<?php
    $ogConfig = array(
        'title' => 'MetaHelper Rocks',
        'type' => 'website',
        'image' => array(
            'url' => 'http://example.com/logo.png',
            'secure_url' => 'https://example.com/logo.png',
            'type' => 'image/jpeg',
            'width' => '300',
            'height' => '500'
        )
    );
    $metaHelper->og($ogConfig)->view();

This would display the following meta tags: <meta charset="UTF-8"><meta property="og:title" content="MetaHelper Rocks">

`<meta property="og:type" content="website">`

`<meta property="og:image:url" content="http://example.com/logo.png">`

`<meta property="og:image:secure_url" content="https://example.com/logo.png">`

`<meta property="og:image:type" content="image/jpeg">`

`<meta property="og:image:width" content="300">`

`<meta property="og:image:height" content="500">`

Twitter Cards

Finally MetaHelper can also take care of Twitter Cards. MetaHelper caters for all the different cards which Twitter Cards provide (Summery Card, Summery Image Card, Photo Card, Gallery Card, App Card, Product Card, Player Card).

Summery Cards Example

//To Create a Summery Card
$metaHelper = new MetaHelper();

$metaHelper->card('SummerCard', [
        'title' => 'This is a title',
        'description' => 'This is a description',
        'image' => 'http://example.com/logo.png',
    ]
);

//You can also change individual attributes
$metaHelper->setCard()->title("A New Title");

All attribute names of all the Twitter Cards available follow the below convention:

Twitter Card Attribute Style MetaHelper Style
twitter:app $helper->app()
twitter:app:name:googleplay $helper->appNameGoogleplay

The only exception is the Summery Card with Large Image where for its twitter:image:src the normal image attribuet is used.

Twitter Card MetaHelper Keyword
Summery Card SummeryCard
Summery With Large Image Card SummeryImageCard
Gallery Card GalleryCard
Photo Card PhotoCard
Player Card PlayerCard
App Card AppCard
Product Card ProductCard

It is important to keep in mind that all of these meta data can be used together like so:

<?php
    $metaHelper = new MetaHelper();

    $metaHelper->title("Title")
        ->description("A description")
        ->card("SummeryCard", ["title"])
        ->og(["Title" => "title])
        ->view();

All versions of metahelper with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jwebkid/metahelper contains the following files

Loading the files please wait ....