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
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', ), /* ... */ );