PHPackages                             meiko-kod/auth - 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. meiko-kod/auth

ActiveProject[Framework](/categories/framework)

meiko-kod/auth
==============

Configureable authentication and registration template for NTLM, LDAP and Database authentication

v1.1(6y ago)0291BSD-3-ClausePHPPHP ^7.0

Since May 22Pushed 6y agoCompare

[ Source](https://github.com/dk2103/auth-template)[ Packagist](https://packagist.org/packages/meiko-kod/auth)[ Docs](http://framework.zend.com/)[ RSS](/packages/meiko-kod-auth/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (14)Versions (3)Used By (0)

MEIKO Login Template
====================

[](#meiko-login-template)

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

[](#introduction)

This is a skeleton application with authentication using the Zend Framework MVC layer and module systems.

Installation using Composer
---------------------------

[](#installation-using-composer)

The easiest way to create project with this template is to use [Composer](https://getcomposer.org/). If you don't have it already installed, then please install as per the [documentation](https://getcomposer.org/doc/00-intro.md).

To create your new project:

```
$ composer create-project meiko-kod/auth path/to/install
```

After installation you can set up your project by using

```
$ ant build
```

Development mode
----------------

[](#development-mode)

The skeleton ships with [zf-development-mode](https://github.com/zfcampus/zf-development-mode)by default, and provides three aliases for consuming the script it ships with:

```
$ composer development-enable  # enable development mode
$ composer development-disable # disable development mode
$ composer development-status  # whether or not development mode is enabled
```

You may provide development-only modules and bootstrap-level configuration in `config/development.config.php.dist`, and development-only application configuration in `config/autoload/development.local.php.dist`. Enabling development mode will copy these files to versions removing the `.dist` suffix, while disabling development mode will remove those copies.

Development mode is automatically enabled as part of the skeleton installation process. After making changes to one of the above-mentioned `.dist` configuration files you will either need to disable then enable development mode for the changes to take effect, or manually make matching updates to the `.dist`-less copies of those files.

Running Unit Tests
------------------

[](#running-unit-tests)

To run the supplied skeleton unit tests, you need to do one of the following:

- During initial project creation, select to install the MVC testing support.
- After initial project creation, install [zend-test](https://zendframework.github.io/zend-test/):

    ```
    $ composer require --dev zendframework/zend-test
    ```

Once testing support is present, you can run the tests using:

```
$ ./vendor/bin/phpunit
```

If you need to make local modifications for the PHPUnit test setup, copy `phpunit.xml.dist` to `phpunit.xml` and edit the new file; the latter has precedence over the former when running tests, and is ignored by version control. (If you want to make the modifications permanent, edit the `phpunit.xml.dist` file.)

Web server setup
----------------

[](#web-server-setup)

### Apache setup

[](#apache-setup)

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:

```

    ServerName zfapp.localhost
    DocumentRoot /path/to/zfapp/public

        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all

        Require all granted

```

### Nginx setup

[](#nginx-setup)

To setup nginx, open your `/path/to/nginx/nginx.conf` and add an [include directive](http://nginx.org/en/docs/ngx_core_module.html#include) below into `http` block if it does not already exist:

```
http {
    # ...
    include sites-enabled/*.conf;
}
```

Create a virtual host configuration file for your project under `/path/to/nginx/sites-enabled/zfapp.localhost.conf`it should look something like below:

```
server {
    listen       80;
    server_name  zfapp.localhost;
    root         /path/to/zfapp/public;

    location / {
        index index.php;
        try_files $uri $uri/ @php;
    }

    location @php {
        # Pass the PHP requests to FastCGI server (php-fpm) on 127.0.0.1:9000
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME /path/to/zfapp/public/index.php;
        include fastcgi_params;
    }
}
```

Restart the nginx, now you should be ready to go!

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2549d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8191c5a572cceeffe4768c2b6cb3bba319f127327bfbb1538fe67d94f8ad872b?d=identicon)[kod](/maintainers/kod)

---

Top Contributors

[![dk2103](https://avatars.githubusercontent.com/u/34709994?v=4)](https://github.com/dk2103 "dk2103 (1 commits)")

---

Tags

ldaploginntlmphptemplateframeworkmvczf

### Embed Badge

![Health badge](/badges/meiko-kod-auth/health.svg)

```
[![Health](https://phpackages.com/badges/meiko-kod-auth/health.svg)](https://phpackages.com/packages/meiko-kod-auth)
```

PHPackages © 2026

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