| Package Data | |
|---|---|
| Maintainer Username: | bryantebeek |
| Maintainer Contact: | bryantebeek@gmail.com (Bryan te Beek) |
| Package Create Date: | 2013-07-20 |
| Package Last Update: | 2023-03-31 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 03:18:06 |
| Package Statistics | |
|---|---|
| Total Downloads: | 2,642 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 71 |
| Total Watchers: | 9 |
| Total Forks: | 23 |
| Total Open Issues: | 10 |
Warning! This package is still in an alpha/beta state.
SEO is a package that provides helpers for some common SEO techniques.
Meta tags:
Sitemap.xml:
Robots.txt:
Require the package in your composer.json.
"calotype/seo": "dev-master"
Run composer install or update to download the package.
$ composer update
Just register the service provider and the facades in app/config/app.php and you are good to go.
// Service provider
'Calotype\SEO\Providers\SEOServiceProvider',
// Facades (can customize if preferred)
'SEO\Meta' => 'Calotype\SEO\Facades\Meta',
'SEO\Sitemap' => 'Calotype\SEO\Facades\Sitemap',
'SEO\Robots' => 'Calotype\SEO\Facades\Robots',