PHPackages                             anahkiasen/seonnet - 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. anahkiasen/seonnet

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

anahkiasen/seonnet
==================

SEO handler for Laravel 4, with customization of slugs, meta data and more

8602PHP

Since May 19Pushed 12y agoCompare

[ Source](https://github.com/Anahkiasen/seonnet)[ Packagist](https://packagist.org/packages/anahkiasen/seonnet)[ RSS](/packages/anahkiasen-seonnet/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Seonnet
=======

[](#seonnet)

A SEO handler for Laravel, to manage localized slugs, meta tags, etc.

How it works
------------

[](#how-it-works)

### Setting up

[](#setting-up)

You start by creating the Seonnet table by typing `artisan seonnet:table` and running `artisan migrate`. From there a table is created following this schema (here with a few example entries) :

```
| pattern   | title   | meta        | url    | lang   |
| --------- | ------- | ------      | -----  | ------ |
| string    | string  | text (json) | string | string |

```

You can add entries to this table by using the provided `seonnet/admin` route (not yet implemented) or via the `Seonnet\Route` model :

```
Seonnet\Route::insert([
  'pattern' => 'agency/*',
  'title'   => 'Welcome to our agency',
  'meta'    => array(
    'description' => 'Interesting stuff about your agency'
  ),
  'url'     => '',
  'lang'    => 'fr',
]);
```

To use Sonnet after that you'll need to replace Laravel's Router with Seonnet's by adding this line to your aliases array in `config/app.php` :

```
'Route' => 'Seonnet\Facades\Route',
```

The magic will happen when you type this :

```
Route::get('agency', function() {
  return View::make('agency');
});
```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/aa3be3e9e416053f11f2296a5fb36f24e45bc70fa293b309d54c2829ded5f373?d=identicon)[Anahkiasen](/maintainers/Anahkiasen)

---

Top Contributors

[![Anahkiasen](https://avatars.githubusercontent.com/u/1321596?v=4)](https://github.com/Anahkiasen "Anahkiasen (17 commits)")

### Embed Badge

![Health badge](/badges/anahkiasen-seonnet/health.svg)

```
[![Health](https://phpackages.com/badges/anahkiasen-seonnet/health.svg)](https://phpackages.com/packages/anahkiasen-seonnet)
```

###  Alternatives

[gloudemans/shoppingcart

Laravel Shoppingcart

3.7k758.6k13](/packages/gloudemans-shoppingcart)[gregwar/formidable

Formidable, the pragmatic forms library

11863.6k1](/packages/gregwar-formidable)[mediawiki/semantic-extra-special-properties

Provides extra special properties for Semantic MediaWiki

2777.8k1](/packages/mediawiki-semantic-extra-special-properties)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
