Module which implement user features.
Please see the composer.json file.
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',
),
/* ... */
);