PHPackages                             mangati/paginator-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. [Framework](/categories/framework)
4. /
5. mangati/paginator-bundle

ActiveLibrary[Framework](/categories/framework)

mangati/paginator-bundle
========================

Symfony4 paginator bundle

v1.1.0(5y ago)2305[1 PRs](https://github.com/mangati/paginator-bundle/pulls)MITPHP

Since May 13Pushed 1y ago1 watchersCompare

[ Source](https://github.com/mangati/paginator-bundle)[ Packagist](https://packagist.org/packages/mangati/paginator-bundle)[ RSS](/packages/mangati-paginator-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (5)Versions (4)Used By (0)

Paginator Bundle
================

[](#paginator-bundle)

Symfony 4+ paginator bundle.

Usage
-----

[](#usage)

Controller:

```
// app controller

/**
 * @Route("/", name="my_index_route")
 */
public function index(Request $request, PaginatorFactory $paginatorFactory)
{
    $qb = $this
        ->getDoctrine()
        ->getManager()
        ->createQueryBuilder()
        ->select('e', 's')
        ->from(Entity::class, 'e');

    $query = $qb->getQuery();

    $paginator = $paginatorFactory
        ->withExtraParams(['q'])
        ->create(
            $request,
            $query,
            'my_index_route'
        );

    return $this->render('index.html.twig', [
        'paginator' => $paginator,
    ]);
}
```

View:

```
{# index.html.twig #}

            ...

        {% for entity in paginator.result %}

                ...

        {% endfor %}

{{ paginator.html|raw }}
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

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 ~583 days

Total

2

Last Release

1972d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/993ae218b2285441c4144a2dbfe5c40efa9a483cde2c6762b544bd557243ee7a?d=identicon)[rogeriolino](/maintainers/rogeriolino)

---

Top Contributors

[![rogeriolino](https://avatars.githubusercontent.com/u/1065082?v=4)](https://github.com/rogeriolino "rogeriolino (6 commits)")

### Embed Badge

![Health badge](/badges/mangati-paginator-bundle/health.svg)

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[symfony/framework-bundle

Provides a tight integration between Symfony components and the Symfony full-stack framework

3.6k235.4M9.7k](/packages/symfony-framework-bundle)[sylius/sylius

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

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

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/platform

The Shopware e-commerce core

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

PHPackages © 2026

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