zf2-boiler-app/app-user

There is no license information available for the latest version (dev-master) of this package.

ZF2 BoilerApp User module

dev-master / 1.0.x-dev 2013-08-20 07:34 UTC

This package is auto-updated.

Last update: 2024-04-24 03:01:04 UTC


README

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