gdpro / gdpro-user
User Module for zend framework
Installs: 82
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/gdpro/gdpro-user
Requires
- php: >=5.5.8
- gdpro/gdpro-mailer: ~1.0.0
- gdpro/gdpro-tool: ~1.0.0
- zendframework/zend-config: ~2.5.0
- zendframework/zend-console: ~2.5.0
- zendframework/zend-db: ~2.5.0
- zendframework/zend-eventmanager: ~2.5.0
- zendframework/zend-i18n: ~2.5.0
- zendframework/zend-i18n-resources: ~2.5.0
- zendframework/zend-inputfilter: ~2.5.0
- zendframework/zend-log: ~2.5.0
- zendframework/zend-mail: ~2.5.0
- zendframework/zend-modulemanager: ~2.5.0
- zendframework/zend-mvc: ~2.5.0
- zendframework/zend-navigation: ~2.5.0
- zendframework/zend-paginator: ~2.5.0
- zendframework/zend-servicemanager: ~2.5.0
- zendframework/zend-session: ~2.5.0
- zendframework/zend-stdlib: ~2.5.0
- zendframework/zend-uri: ~2.5.0
- zendframework/zend-validator: ~2.5.0
- zendframework/zend-view: ~2.5.0
Requires (Dev)
- phpunit/phpunit: ~4.3
README
Introduction
Module which implement user features.
Changelog
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', ), /* ... */ );