PHPackages                             zf2-boiler-app/app-access-control - 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. [Security](/categories/security)
4. /
5. zf2-boiler-app/app-access-control

ActiveLibrary[Security](/categories/security)

zf2-boiler-app/app-access-control
=================================

ZF2 BoilerApp Access control module

0931PHP

Since Oct 7Pushed 12y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

ZF2 BoilerApp "Access control" module
=====================================

[](#zf2-boilerapp-access-control-module)

[![Build Status](https://camo.githubusercontent.com/146b2478e4e0dd58709f36402ab11a8e08f629a4ec26bdc8d8b3154cef102619/68747470733a2f2f7472617669732d63692e6f72672f7a66322d626f696c65722d6170702f6170702d6163636573732d636f6e74726f6c2e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/zf2-boiler-app/app-access-control)[![Latest Stable Version](https://camo.githubusercontent.com/89fefa01fae1a4a18baf4084930977bc03636920cded42b87f7f9b714951c8e5/68747470733a2f2f706f7365722e707567782e6f72672f7a66322d626f696c65722d6170702f6170702d6163636573732d636f6e74726f6c2f762f737461626c652e706e67)](https://packagist.org/packages/zf2-boiler-app/app-access-control)[![Total Downloads](https://camo.githubusercontent.com/5c02800ef86d35c2d57bb145e9fc4d6c0978b7ef8f627b964f2292fed403aa2a/68747470733a2f2f706f7365722e707567782e6f72672f7a66322d626f696c65722d6170702f6170702d6163636573732d636f6e74726f6c2f646f776e6c6f6164732e706e67)](https://packagist.org/packages/zf2-boiler-app/app-access-control)[![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)

**ZF2 BoilerApp "Access control" module** is a Zend Framework 2 module that provides access control for ZF2 Boiler-App

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

[](#requirements)

- [Zend Framework 2](https://github.com/zendframework/zf2) (latest master)
- [ZF2 BoilerApp "Database" module](https://github.com/zf2-boiler-app/app-db) (latest master)
- [ZF2 BoilerApp "Display" module](https://github.com/zf2-boiler-app/app-display) (latest master)
- [ZF2 BoilerApp "Messenger" module](https://github.com/zf2-boiler-app/app-messenger) (latest master)
- [ZF2 BoilerApp "User" module](https://github.com/zf2-boiler-app/app-user) (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-access-control": "1.0.*"
    }
    ```
2. Now tell composer to download **ZF2 BoilerApp "Access control" 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(
            // ...
            'DoctrineModule',
    		'DoctrineORMModule',
    		'AssetsBundle',
    		'TwbBundle',
    		'BoilerAppDb',
    		'BoilerAppUser',
    		'BoilerAppDisplay',
    		'BoilerAppMessenger',
    		'BoilerAppAccessControl'
        ),
        // ...
    );
    ```

Features
--------

[](#features)

- Two steps registrations (confirm email adress)
- Login with username or email adress
- Authentication access is independent of the user account
- An authentication access can be used to access multiple accounts
- An account can be accessed by multiple authentication access

###  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 (87 commits)")

### Embed Badge

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

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

###  Alternatives

[mews/purifier

Laravel 5/6/7/8/9/10 HtmlPurifier Package

2.0k18.0M137](/packages/mews-purifier)[paragonie/ecc

PHP Elliptic Curve Cryptography library

24772.0k35](/packages/paragonie-ecc)

PHPackages © 2026

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