gdpro/gdpro-user

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

User Module for zend framework

1.0.9 2015-10-29 21:33 UTC

This package is auto-updated.

Last update: 2024-03-23 05:17:52 UTC


README

Introduction

Module which implement user features.

Changelog

doc/CHANGELOG.md

Requirements

Please see the composer.json file.

Installation

Run the following composer command:

$ composer require "gdpro/gdpro-user:~1.0"

Alternately, manually add the following to your composer.json, in the require section:

"require": {
    "gdpro/gdpro-user": "~1.0"
}

And then run composer update to ensure the module is installed.

Finally, add the module name to your project's config/application.config.php under the modules key:

return array(
    /* ... */
    'modules' => array(
        /* ... */
        'GdproUser',
    ),
    /* ... */
);