PHPackages                             nucleos/seo-bundle - 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. nucleos/seo-bundle

ActiveSymfony-bundle

nucleos/seo-bundle
==================

Seo components

1.6.0(7mo ago)219.6k↓12.5%1[1 issues](https://github.com/nucleos/NucleosSeoBundle/issues)MITPHPPHP ^8.3CI passing

Since Sep 15Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/nucleos/NucleosSeoBundle)[ Packagist](https://packagist.org/packages/nucleos/seo-bundle)[ Docs](https://nucleos.rocks)[ GitHub Sponsors](https://github.com/sponsors/core23)[ Fund](https://ko-fi.com/core23)[ RSS](/packages/nucleos-seo-bundle/feed)WikiDiscussions 1.8.x Synced 1mo ago

READMEChangelog (10)Dependencies (19)Versions (22)Used By (0)

NucleosSeoBundle
================

[](#nucleosseobundle)

[![Latest Stable Version](https://camo.githubusercontent.com/d17407872501240be094647e6a25c3492a2373e04d4ce43c42d4ef3b324648be/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f762f737461626c65)](https://packagist.org/packages/nucleos/seo-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/43054dbe9036e4cdcb8c3aeeb5127539bf22d543fdbf195bbb54b76f29cdd876/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f762f756e737461626c65)](https://packagist.org/packages/nucleos/seo-bundle)[![License](https://camo.githubusercontent.com/826ab0fc7b0bb570354296c5c09a5e136073228237a7e021e781c1c7d7f0de7f/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f6c6963656e7365)](https://packagist.org/packages/nucleos/seo-bundle)

[![Total Downloads](https://camo.githubusercontent.com/180cbe76b95f7ea57baae0774cdd00b65ad2c5599fd6f0d4271e58dc01887428/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/nucleos/seo-bundle)[![Monthly Downloads](https://camo.githubusercontent.com/8c555b77dfd18bcc5662c3f72a604ff767e2c42edd2dd35a654117a4b2fee0ae/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f642f6d6f6e74686c79)](https://packagist.org/packages/nucleos/seo-bundle)[![Daily Downloads](https://camo.githubusercontent.com/8f36d15d4acfb1a8f513ef6272ed36ff9526c90902d2f19fc934cb32993ae032/68747470733a2f2f706f7365722e707567782e6f72672f6e75636c656f732f73656f2d62756e646c652f642f6461696c79)](https://packagist.org/packages/nucleos/seo-bundle)

[![Continuous Integration](https://github.com/nucleos/NucleosSeoBundle/actions/workflows/continuous-integration.yml/badge.svg?event=push)](https://github.com/nucleos/NucleosSeoBundle/actions?query=workflow%3A%22Continuous+Integration%22+event%3Apush)[![Code Coverage](https://camo.githubusercontent.com/bed778d126829bf8830c4b400aa3b158c4e08da269187f9e340e91f6102d5c63/68747470733a2f2f636f6465636f762e696f2f67682f6e75636c656f732f4e75636c656f7353656f42756e646c652f67726170682f62616467652e737667)](https://codecov.io/gh/nucleos/NucleosSeoBundle)

The NucleosSeoBundle is a fork of [SonataSeoBundle](https://github.com/sonata-project/SonataSeoBundle/) which respects BC. It also provides sitemap functionality of the deprecated [NucleosSitemapBundle](https://github.com/nucleos/NucleosSitemapBundle).

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

[](#installation)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this library:

```
composer require nucleos/seo-bundle

```

### Enable the Bundle

[](#enable-the-bundle)

Then, enable the bundle by adding it to the list of registered bundles in `config/bundles.php` file of your project:

```
// config/bundles.php

return [
    // ...
    Nucleos\SeoBundle\NucleosSeoBundle::class => ['all' => true],
];
```

### Configure the Bundle

[](#configure-the-bundle)

Create a configuration file called `nucleos_seo.yaml`:

```
# config/routes/nucleos_seo.yaml

nucleos_seo:
    resource: '@NucleosSeoBundle/Resources/config/routing/sitemap.yml'
    prefix: /
```

If you want to use symfony cache, you should define a new cache pool (PSR 6) and create an adapter to map it to a simple cache (PSR 16):

```
nucleos_seo:
    cache:
        service: 'sitemap.cache.simple'

framework:
    cache:
        pools:
            sitemap.cache:
                adapter: cache.app
                default_lifetime: 60

services:
    sitemap.cache.simple:
        class: 'Symfony\Component\Cache\Psr16Cache'
        arguments:
            - '@sitemap.cache'
```

### Add static entries

[](#add-static-entries)

You can add static entries in your yaml config:

```
# config/packages/nucleos_seo.yaml

nucleos_seo:
    static:
        - { url: 'http://example.com', priority: 75, changefreq: 'weekly' }
```

### Add a custom sitemap

[](#add-a-custom-sitemap)

If you want to create a custom sitemap, the only thing you have to do is to create a service that uses `Nucleos\SeoBundle\Sitemap\SitemapServiceInterface` and tag the service with `nucleos_seo.sitemap`.

```

```

License
-------

[](#license)

This bundle is under the [MIT license](LICENSE.md).

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance69

Regular maintenance activity

Popularity30

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 65.1% 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 ~70 days

Recently: every ~106 days

Total

17

Last Release

218d ago

PHP version history (3 changes)1.0.0PHP ^8.0

1.1.0PHP ^8.1

1.6.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/46179d0f1a863a1a71c634a413d857f8428ad9a8273cd065ba4f0e864730dde9?d=identicon)[core23](/maintainers/core23)

---

Top Contributors

[![core23](https://avatars.githubusercontent.com/u/3440437?v=4)](https://github.com/core23 "core23 (54 commits)")[![nucleos-bot](https://avatars.githubusercontent.com/u/60489587?v=4)](https://github.com/nucleos-bot "nucleos-bot (18 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (11 commits)")

---

Tags

breadcrumbbundlehacktoberfestphpsitemapsymfonysymfony-bundleSitemapseosonatabreadcrumb

### Embed Badge

![Health badge](/badges/nucleos-seo-bundle/health.svg)

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

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[nelmio/api-doc-bundle

Generates documentation for your REST API from attributes

2.3k63.6M233](/packages/nelmio-api-doc-bundle)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M310](/packages/easycorp-easyadmin-bundle)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)

PHPackages © 2026

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