PHPackages                             zf2-boiler-app/app-display - 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. zf2-boiler-app/app-display

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

zf2-boiler-app/app-display
==========================

ZF2 BoilerApp Display module

0193JavaScript

Since Aug 19Pushed 12y ago2 watchersCompare

[ Source](https://github.com/zf2-boiler-app/app-display)[ Packagist](https://packagist.org/packages/zf2-boiler-app/app-display)[ RSS](/packages/zf2-boiler-app-app-display/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

ZF2 Boiler-App "Display" module
===============================

[](#zf2-boiler-app-display-module)

[![Build Status](https://camo.githubusercontent.com/9ae669a5c7562a4e2479f994ab679fad2eb5412fc2f8475bd86b83ac9f6216a1/68747470733a2f2f7472617669732d63692e6f72672f7a66322d626f696c65722d6170702f6170702d646973706c61792e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/zf2-boiler-app/app-display)[![Latest Stable Version](https://camo.githubusercontent.com/5dc07c44cc17c7cc71b3320437f1f0f49a182c932dde62b03d1afeac28a43ca5/68747470733a2f2f706f7365722e707567782e6f72672f7a66322d626f696c65722d6170702f6170702d646973706c61792f762f737461626c652e706e67)](https://packagist.org/packages/zf2-boiler-app/app-display)[![Total Downloads](https://camo.githubusercontent.com/8394e0423734f32cc44f2e67a0096413bbc52fc161bcf1180de0d3ae1c7b96ee/68747470733a2f2f706f7365722e707567782e6f72672f7a66322d626f696c65722d6170702f6170702d646973706c61792f646f776e6c6f6164732e706e67)](https://packagist.org/packages/zf2-boiler-app/app-display)[![Code coverage](https://camo.githubusercontent.com/d88ad14609fc28b80da24e0c2f47229a8caecd3d6b7a71b5a25f6d286e839596/68747470733a2f2f7261772e6769746875622e636f6d2f7a66322d626f696c65722d6170702f6170702d746573742f6d61737465722f726573736f75726365732f3130302532352d636f64652d636f7665726167652e706e67 "100% code coverage")](https://camo.githubusercontent.com/d88ad14609fc28b80da24e0c2f47229a8caecd3d6b7a71b5a25f6d286e839596/68747470733a2f2f7261772e6769746875622e636f6d2f7a66322d626f696c65722d6170702f6170702d746573742f6d61737465722f726573736f75726365732f3130302532352d636f64652d636f7665726167652e706e67)

NOTE : This module is in heavy development, it's not usable yet. If you want to contribute don't hesitate, I'll review any PR.

Introduction
------------

[](#introduction)

**Boiler-App "Display" module** is a Zend Framework 2 module that provides all part of the display management for ZF2 Boiler-App

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

[](#requirements)

- [Zend Framework 2](https://github.com/zendframework/zf2) (latest master)
- [AssetsBundle](https://github.com/neilime/zf2-assets-bundle) (latest master)
- [TwbBundle](https://github.com/neilime/zf2-twb-bundle) (latest master)
- [TreeLayoutStack](https://github.com/neilime/zf2-tree-layout-stack) (latest master)
- [Font Awesome](https://github.com/fortawesome/font-awesome) (latest master)
- [MeioMask](https://github.com/fabiomcosta/mootools-meio-mask) (latest master)
- [iFrameFormRequest](https://github.com/arian/iFrameFormRequest) (latest master)
- [Form.PasswordStrength](https://github.com/nak5ive/Form.PasswordStrength) (latest master)
- [TranslatorTools](https://github.com/neilime/zf2-translator-tools) (latest master)

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

[](#installation)

### Main Setup

[](#main-setup)

#### By cloning project

[](#by-cloning-project)

1. Clone this project into your `./vendor/` directory.

#### With composer

[](#with-composer)

1. Add this project in your composer.json:

    ```
    "repositories":[
        {
            "type": "package",
            "package": {
                "version": "dev-master",
                "name": "fortawesome/font-awesome",
                "source": {"url": "https://github.com/FortAwesome/Font-Awesome.git","type": "git","reference": "master"}
            }
        },
        {
            "type": "package",
            "package": {
                "version": "dev-master",
                "name": "fabiomcosta/mootools-meio-mask",
                "source": {"url": "https://github.com/fabiomcosta/mootools-meio-mask.git","type": "git","reference": "master"}
            }
        },
        {
            "type": "package",
            "package": {
                "version": "dev-master",
                "name": "arian/iFrameFormRequest",
                "source": {"url": "https://github.com/arian/iFrameFormRequest.git","type": "git","reference": "master"}
            }
        },
        {
            "type": "package",
            "package": {
                "version": "dev-master",
                "name": "nak5ive/Form.PasswordStrength",
                "source": {"url": "https://github.com/nak5ive/Form.PasswordStrength.git","type": "git","reference": "master"}
            }
        },
        {
            "type": "vcs",
            "url": "http://github.com/Nodge/lessphp"
        }
    ],
    "require": {
        "zf2-boiler-app/app-display": "1.0.*"
    }
    ```
2. Now tell composer to download **ZF2 Boiler-App "Display" module** by running the command:

    ```
    $ php composer.phar update
    ```

#### Post installation

[](#post-installation)

1. Enabling it in your `application.config.php` file.

    ```
    return array(
        'modules' => array(
            // ...
            'TwbBundle',
            'AssetsBundle',
            'TreeLayoutStack',
            'BoilerAppDisplay',
        ),
        // ...
    );
    ```

Features
--------

[](#features)

- Twitter bootstrap integration ([TwbBundle](https://github.com/neilime/zf2-twb-bundle))
- Assets management ([AssetsBundle](https://github.com/neilime/zf2-assets-bundle))
- Tree layout stack ([TreeLayoutStack](https://github.com/neilime/zf2-tree-layout-stack))
- Javascript facilities :
    - Controller autoloading
    - Url &amp; translate functions
    - Ajax loading (modal windows, forms)
    - Form validators
- Translator enhancement ([TranslatorTools](https://github.com/neilime/zf2-translator-tools))

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0cd480ea3050a483f3e08c365a6d847402b4edb110d706111d13ef33b845ef9f?d=identicon)[neilime](/maintainers/neilime)

---

Top Contributors

[![neilime](https://avatars.githubusercontent.com/u/314088?v=4)](https://github.com/neilime "neilime (54 commits)")

### Embed Badge

![Health badge](/badges/zf2-boiler-app-app-display/health.svg)

```
[![Health](https://phpackages.com/badges/zf2-boiler-app-app-display/health.svg)](https://phpackages.com/packages/zf2-boiler-app-app-display)
```

###  Alternatives

[kartik-v/yii2-sortable-input

Sortable input widget based on yii2-sortable extension.

23683.8k2](/packages/kartik-v-yii2-sortable-input)[nazonohito51/cakephp2-ide-helper

Improve auto-completion for cakephp2

10258.8k](/packages/nazonohito51-cakephp2-ide-helper)[mitydigital/sitemapamic

An XML sitemap generator for Statamic that includes all collections and related taxonomy pages.

1494.3k](/packages/mitydigital-sitemapamic)[magepal/magento2-form-field-manager

Customer and Address Form Fields Manager for Magento2

273.9k](/packages/magepal-magento2-form-field-manager)[ovunctukenmez/samesite-cookie-setter

This class enables samesite cookies.

1114.4k](/packages/ovunctukenmez-samesite-cookie-setter)

PHPackages © 2026

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