PHPackages                             despark/igni-seo - 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. [Framework](/categories/framework)
4. /
5. despark/igni-seo

ActiveLibrary[Framework](/categories/framework)

despark/igni-seo
================

Igni CMS SEO Package

v1.4.1(8y ago)01.2kMITPHPPHP &gt;=5.6.4

Since Oct 19Pushed 8y ago7 watchersCompare

[ Source](https://github.com/despark/igni-seo)[ Packagist](https://packagist.org/packages/despark/igni-seo)[ RSS](/packages/despark-igni-seo/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (5)Versions (18)Used By (0)

[![](https://camo.githubusercontent.com/812ea17970564244d0aa2c600b85674e2f680bf9dafc2ad288c3680c620f6bf3/68747470733a2f2f6465737061726b2e636f6d2f7075626c69632f696d616765732f6465737061726b2d6c6f676f2e737667)](https://camo.githubusercontent.com/812ea17970564244d0aa2c600b85674e2f680bf9dafc2ad288c3680c620f6bf3/68747470733a2f2f6465737061726b2e636f6d2f7075626c69632f696d616765732f6465737061726b2d6c6f676f2e737667)

[![Latest Stable Version](https://camo.githubusercontent.com/a8028f11983df5e58f586ff1819c080d2dfc455cd0dcfd6ad4a551587fdb8004/68747470733a2f2f706f7365722e707567782e6f72672f6465737061726b2f69676e692d73656f2f762f737461626c652e737667)](https://packagist.org/packages/despark/igni-seo)

Despark's igniCMS SEO Module for Laravle 5.3|5.4|5.5
====================================================

[](#desparks-ignicms-seo-module-for-laravle-535455)

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

[](#installation)

1. Run `composer require despark/igni-seo`
2. Add igniCMS SEO module service providers before the *application service providers* in the `config/app.php`, as shown below **(Optional for Laravel 5.5)**

*Example*

```
 ...
  /*
  * igniCMS Service Providers
  */
  Despark\Cms\Seo\Providers\IgniSeoServiceProvider::class,
  /*
  * Package Service Providers...
  */
  Laravel\Tinker\TinkerServiceProvider::class,
 ...
```

3. Run `php artisan vendor:publish --provider="Despark\Cms\Seo\Providers\IgniSeoServiceProvider"`. If you are using Laravel 5.3|5.4, replace `--provider` with `--class`.
4. Run `php artisan migrate` to add our seo table to your database.
5. In your entity file add the following code in your `adminFormsField`:

```
   'content' => [
      'type' => 'wysiwyg',
      'label' => 'Content',
    ],
    'readability' => [
      'type' => 'readability',
      'for' => 'content', // This field is optional. Use it only if your column, that is going to be checked for readability, is not called content
      'editorPosition' => 0, // The position of the desired editor, if you have more than one wysiwygs
     ],
    'seo' => [
      'type' => 'seo',
      'routeName' => 'articles.show',
      'meta_title_field' => 'title', // This field is optional. Use it only if your column, which is going to be checked is not called title
     ],
```

6. Add our Traits and Interfaces to your Model.

```
use Despark\Cms\Admin\Interfaces\UploadImageInterface;
use Despark\Cms\Admin\Traits\AdminImage;
use Despark\Cms\Models\AdminModel;
use Despark\Cms\Seo\Contracts\Seoable;
use Despark\Cms\Seo\Traits\HasSeo;

class Article extends AdminModel implements Seoable, UploadImageInterface
{
    use HasSeo;
    use AdminImage;

    protected $table = 'articles';

    protected $fillable = [
        'title',
        'slug',
        'content',
    ];

    protected $rules = [
        'title' => 'required',
        'slug' => 'required',
        'content' => 'required',
    ];

    protected $identifier = 'article';
}
```

Get your SEO data
-----------------

[](#get-your-seo-data)

```
  $seoData = $model->seo;
```

Copyright and License
---------------------

[](#copyright-and-license)

igniCMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~7 days

Recently: every ~19 days

Total

16

Last Release

3016d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6141561?v=4)[Despark Bulgaria EAD](/maintainers/despark)[@despark](https://github.com/despark)

---

Top Contributors

[![ageshev](https://avatars.githubusercontent.com/u/9364161?v=4)](https://github.com/ageshev "ageshev (54 commits)")

---

Tags

frameworklaravelcorecmsseodespark

### Embed Badge

![Health badge](/badges/despark-igni-seo/health.svg)

```
[![Health](https://phpackages.com/badges/despark-igni-seo/health.svg)](https://phpackages.com/packages/despark-igni-seo)
```

###  Alternatives

[microweber/microweber

New generation CMS with drag and drop

3.4k13.8k1](/packages/microweber-microweber)[despark/ignicms

Administrative interface builder for Laravel 5.1

222.5k1](/packages/despark-ignicms)[reinvanoyen/cmf

A flexible and extendable solution for all your content management needs

1025.5k](/packages/reinvanoyen-cmf)

PHPackages © 2026

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