PHPackages                             jagehring/laravel-keyword-analytics - 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. jagehring/laravel-keyword-analytics

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

jagehring/laravel-keyword-analytics
===================================

Analyze keywords in the content and make diagnostics to improve the seo score of the content.

09PHP

Since May 10Pushed 2y agoCompare

[ Source](https://github.com/jagehring/Keyword-Analytics)[ Packagist](https://packagist.org/packages/jagehring/laravel-keyword-analytics)[ RSS](/packages/jagehring-laravel-keyword-analytics/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Keyword Analytics
=========================

[](#laravel-keyword-analytics)

Analyze keywords in the content and make diagnostics to improve the seo score of the content.

Features
--------

[](#features)

- Check keyword length.
- Check keyword density.
- Check title length.
- Check meta description length.
- Check content length.
- Check keyword in URL.
- Check keyword in title.
- Check keyword in first paragraph of content.
- Check keyword in meta description.
- Check keyword in meta title.
- Check images in content.
- Check keyword in ALT attribute of image tags.
- Check links in content.
- Check keyword in TITLE attribute of links.
- Check heading available in content.
- Check keyword available in headings.

#### Language Supported

[](#language-supported)

- English
- Chinese
- Spanish
- French
- Indonesian
- Japanese
- Portuguese
- Russian
- Vietnamese

Requirements
------------

[](#requirements)

- PHP7.0+
- ext-json
- ext-intl

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

[](#installation)

You can install the package via composer:

```
composer require jagehring/laravel-keyword-analytics
```

#### For Laravel

[](#for-laravel)

The Service Provider has automatically discovered. You don't need to do anything to register it.

If you need to change configurations of this package, run the following command:

```
php artisan vendor:publish --provider="Qmas\KeywordAnalytics\KeywordAnalyticsServiceProvider"
```

#### For Lumen

[](#for-lumen)

Copy `config.php` from `vendor/qmas/laravel-keyword-analytics/config` to `config` directory then rename to `keyword-analytics.php`

Open `bootstrap/app.php` then add the following code to **Create Application** section:

```
$app->configure('keyword-analytics');
```

And the following code to **Register Service Providers** section:

```
$app->register(QMAS\KeywordAnalytics\KeywordAnalyticsServiceProvider::class);
```

Usage
-----

[](#usage)

#### For Laravel

[](#for-laravel-1)

```
use Qmas\KeywordAnalytics\Facade as Analytic;

$results = Analytic::run($keyword, $title, $description, $html, $url)->getResults();

// Or
$results = app('keyword-analytics')->run($keyword, $title, $description, $html, $url)->getResults();

dd($results);
```

Or you can run instance from request (read config file to understand about this method)

```
use Qmas\KeywordAnalytics\Facade as Analytic;

$results = Analytic::fromRequest()->run()->getResults();

// Or
$results = app('keyword-analytics')->fromRequest()->run()->getResults();

dd($results);
```

#### For Lumen

[](#for-lumen-1)

```
use Qmas\KeywordAnalytics\Analysis;

$results = app(Analysis::class)->run($keyword, $title, $description, $seo_title, $html, $url)->getResults();

dd($results);
```

Or you can run instance from request

```
use Qmas\KeywordAnalytics\Analysis;

$results = app(Analysis::class)->fromRequest()->run()->getResults();

dd($results);
```

### Testing

[](#testing)

```
composer tests
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [jagehring](https://github.com/jagehring)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 84.4% 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/3e36dc0d807dc8389d1a546dcf3c8882e80d6a68a4882430114c34880b31528d?d=identicon)[jagehring](/maintainers/jagehring)

---

Top Contributors

[![r94ever](https://avatars.githubusercontent.com/u/6280398?v=4)](https://github.com/r94ever "r94ever (27 commits)")[![jagehring](https://avatars.githubusercontent.com/u/5625272?v=4)](https://github.com/jagehring "jagehring (5 commits)")

### Embed Badge

![Health badge](/badges/jagehring-laravel-keyword-analytics/health.svg)

```
[![Health](https://phpackages.com/badges/jagehring-laravel-keyword-analytics/health.svg)](https://phpackages.com/packages/jagehring-laravel-keyword-analytics)
```

PHPackages © 2026

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