A simple Module that glues together LmcUser, BjyAuthorize, SlmLocale, GoalioRememberMe and Laminas\Db. A fork of manuakasam/SamUser
.
- Require JUser
composer require jroedel/zf3-juser
-
Copy
config/juser.config.php.dist
to your Application config folder, and customize the values. -
Create the two tables with the sql in
config/database.sql.dist
. -
Enable all the modules in your
application.config.php
file (order is important):
return [
'modules' => [
// ...
'ZfcBase',
'LmcUser',
'BjyAuthorize',
'SlmLocale',
'GoalioRememberMe',
'JUser',
],
// ...
];
- The GUI can be accessed from
/users
. Make sure to double-check that only administers have access to thejuser
routes. This can be configured in yourjuser.global.php
file.