PHPackages                             facile-it/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. [Database &amp; ORM](/categories/database)
4. /
5. facile-it/paginator-bundle

Abandoned → [knplabs/knp-paginator-bundle](/?search=knplabs%2Fknp-paginator-bundle)ArchivedSymfony-bundle[Database &amp; ORM](/categories/database)

facile-it/paginator-bundle
==========================

lightweight symfony2 pagination

1.5(8y ago)44.6k1Apache-2.0PHP

Since Aug 26Pushed 3y ago43 watchersCompare

[ Source](https://github.com/facile-it/paginator-bundle)[ Packagist](https://packagist.org/packages/facile-it/paginator-bundle)[ Docs](http://github.com/facile-it/paginator-bundle)[ RSS](/packages/facile-it-paginator-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (5)Versions (12)Used By (0)

A **lightweight** symfony2 pagination system

[![Build Status](https://camo.githubusercontent.com/683015abdca01870924a47827d842a466d48acc1263dbff1fe7d4ec734680907/68747470733a2f2f7472617669732d63692e6f72672f666163696c652d69742f706167696e61746f722d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/facile-it/paginator-bundle)[![Code Climate](https://camo.githubusercontent.com/1d486896905994d70aa9b24037a4ab1e8b0ff3dacbefdaf07a8a7742fdc13952/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f666163696c652d69742f706167696e61746f722d62756e646c652f6261646765732f6770612e737667)](https://codeclimate.com/github/facile-it/paginator-bundle)

Requirements:
-------------

[](#requirements)

- Twig`>=1.5` version is required if you plan to include the twig template.
- Twig `2.*` is allowed

Features:
---------

[](#features)

- Inizialization can be made via request or via setters
- Handle route as well as route parameters

Installation and configuration:
-------------------------------

[](#installation-and-configuration)

Quite easy [Composer](http://packagist.org), add:

```
{
    "require": {
        "facile-it/paginator-bundle": "dev-master"
    }
}
```

Or if you want to clone the repos:

```
git clone git://github.com/facile-it/paginator-bundle.git vendor/facile-it/PaginatorBundle

```

### Add PaginatorBundle to your application kernel

[](#add-paginatorbundle-to-your-application-kernel)

```
// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Facile\PaginatorBundle\FacilePaginatorBundle(),
        // ...
    );
}
```

Usage examples:
---------------

[](#usage-examples)

### Controller

[](#controller)

Currently paginator can paginate:

- `Doctrine\ORM\QueryBuilder`

```
// Acme\MainBundle\Controller\ProductController.php

    $queryBuilder = $this
        ->get('doctrine.orm.entity_manager')
        ->getRepository('AcmeMainBundle:Product')
        ->createQueryBuilder('product')

    $paginator = $this->get('facile.paginator')->parseRequest($this->getRequest());

    return $this->render('AcmeMainBundle:Product:list.html.twig', array(
        'results' => $pagination,
        'paginationInfo' => $paginator->getPaginationInfo($filterBuilder
        )
    );
```

### View

[](#view)

```
{# display results #}

    {% for product in results %}

            {{ product.id }}
            {{ product.title }}

    {% endfor %}

{# display navigation #}

    {% include 'FacilePaginatorBundle:Pagination:template.html.twig' %}

```

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~176 days

Total

7

Last Release

3115d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5d7b74d41d0b4fbccef0593c9374d984459c2cfd48d38e6a23ac6bf34dbbc625?d=identicon)[Fpanina](/maintainers/Fpanina)

---

Top Contributors

[![Jean85](https://avatars.githubusercontent.com/u/6729988?v=4)](https://github.com/Jean85 "Jean85 (16 commits)")[![ranpafin](https://avatars.githubusercontent.com/u/3133626?v=4)](https://github.com/ranpafin "ranpafin (7 commits)")[![peelandsee](https://avatars.githubusercontent.com/u/1212677?v=4)](https://github.com/peelandsee "peelandsee (6 commits)")[![salvatorecordiano](https://avatars.githubusercontent.com/u/2036080?v=4)](https://github.com/salvatorecordiano "salvatorecordiano (2 commits)")[![taueres](https://avatars.githubusercontent.com/u/3669079?v=4)](https://github.com/taueres "taueres (1 commits)")[![guidopili](https://avatars.githubusercontent.com/u/11429525?v=4)](https://github.com/guidopili "guidopili (1 commits)")[![ilario-pierbattista](https://avatars.githubusercontent.com/u/987038?v=4)](https://github.com/ilario-pierbattista "ilario-pierbattista (1 commits)")[![Algatux](https://avatars.githubusercontent.com/u/888864?v=4)](https://github.com/Algatux "Algatux (1 commits)")

---

Tags

pagination-bundlepaginatorphpsymfony2-paginationsymfonypaginatordoctrinepagination

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[sulu/sulu

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

1.3k1.4M203](/packages/sulu-sulu)[ahmed-bhs/doctrine-doctor

Runtime analysis tool for Doctrine ORM integrated into Symfony Web Profiler. Unlike static linters, it analyzes actual query execution at runtime to detect performance bottlenecks, security vulnerabilities, and best practice violations during development with real execution context and data.

9410.7k](/packages/ahmed-bhs-doctrine-doctor)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1616.4k13](/packages/2lenet-crudit-bundle)

PHPackages © 2026

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