PHPackages                             ari/seo-engine - 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. ari/seo-engine

ActiveLibrary

ari/seo-engine
==============

SEO Engine untuk PHP Native dan Laravel

v1.0.0(2mo ago)04MITPHPPHP ^8.2

Since Feb 25Pushed 2mo agoCompare

[ Source](https://github.com/ariprw/seo-engine)[ Packagist](https://packagist.org/packages/ari/seo-engine)[ RSS](/packages/ari-seo-engine/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

SEO Engine
==========

[](#seo-engine)

**Hybrid SEO Engine** untuk **PHP &amp; Laravel**. Bisa dipakai di PHP native atau langsung di Laravel sebagai package reusable.

---

Instalasi
---------

[](#instalasi)

### Laravel

[](#laravel)

```
composer require ari/seo-engine
```

### PHP

[](#php)

```
composer require ari/seo-engine
```

Konfigurasi
-----------

[](#konfigurasi)

### Publikasikan config di Laravel:

[](#publikasikan-config-di-laravel)

```
php artisan vendor:publish --tag=seo-config
```

### File konfigurasi: config/seo.php

[](#file-konfigurasi-configseophp)

```
return [
    'min_words_for_analysis' => 400,
    'ideal_density_min' => 0.8,
    'ideal_density_max' => 2.0,
];
```

Cara Pakai
----------

[](#cara-pakai)

### Di Laravel

[](#di-laravel)

```
use Ari\SeoEngine\Laravel\Facades\Seo;

$post = [
    'baseUrl' => 'https://contoh.com',
    'slug' => 'judul-artikel',
    'title' => 'Judul Artikel',
    'content' => 'Konten...',
    'keyword' => 'seo',
    'metaDescription' => 'Judul artikel adalah...',
];

$result = Seo::analyze((object) $post);

print_r($result);
```

### Di PHP

[](#di-php)

```
require 'vendor/autoload.php';

use Ari\SeoEngine\Core\Engine\SeoEngine;
use Ari\SeoEngine\Core\Analyzers\KeywordAnalyzer;

$seoEngine = new SeoEngine();
$seoEngine->addAnalyzer(new KeywordAnalyzer());

$result = $seoEngine->analyze([
    'baseUrl' => 'https://contoh.com',
    'slug' => 'judul-artikel',
    'title' => 'Judul Artikel',
    'content' => 'Konten...',
    'keyword' => 'seo',
    'metaDescription' => 'Judul artikel adalah...',
]);

print_r($result);
```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance84

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

83d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/64145e2f36ac3890b5a21715824812e2bd585ec2e506e1ccc4be4ac807ae8918?d=identicon)[ariprw](/maintainers/ariprw)

---

Top Contributors

[![ariprw](https://avatars.githubusercontent.com/u/81085258?v=4)](https://github.com/ariprw "ariprw (7 commits)")

### Embed Badge

![Health badge](/badges/ari-seo-engine/health.svg)

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

PHPackages © 2026

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