Skip to content

zf2-boiler-app/app-user

Repository files navigation

ZF2 BoilerApp "User" module

Build Status Latest Stable Version Total Downloads Code coverage

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

ZF2 BoilerApp User module is a Zend Framework 2 module that provides user account managment for ZF2 Boiler-App

Requirements

Installation

Main Setup

By cloning project

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

With composer

  1. Add this project in your composer.json:

    "require": {
        "zf2-boiler-app/app-user": "dev-master"
    }
  2. Now tell composer to download ZF2 BoilerApp User module by running the command:

    $ php composer.phar update

Post installation

  1. Enabling BoilerAppUser, BoilerAppDb and Doctrine modules in your application.config.php file.

    return array(
        'modules' => array(
            // ...
            'BoilerAppUser',
            'BoilerAppDb',
            'DoctrineModule',
    		'DoctrineORMModule',
    		// ...
        ),
        // ...
    );

Features