jroedel / zf2-juser
A fork of manuakasam/SamUser. Glues together LmcUser, BjyAuthorize, SlmLocale, and GoalioRememberMe
1.0.0
2022-07-19 20:37 UTC
Requires
- php: ^8.0
- beaucal/beaucal-invalid-session: ^0.3.0
- jroedel/laminas-sion-model: dev-master
- jroedel/locale: dev-master@dev
- jroedel/zf-snap-geoip: ^3.0
- kokspflanze/bjy-authorize: ^1.7
- laminas/laminas-crypt: ^2.4.0 || ^3.1.0
- laminas/laminas-db: ^2.4.0
- laminas/laminas-form: ^2.4.0
- laminas/laminas-math: ^2.7 || ^3.0
- laminas/laminas-mvc-form: ^1.0
- multidots/zf3-rest-api: dev-master
- zf-commons/zfc-user: 3.x@dev
This package is not auto-updated.
Last update: 2026-03-15 03:52:26 UTC
README
A simple Module that glues together LmcUser, BjyAuthorize, SlmLocale, GoalioRememberMe and Laminas\Db. A fork of manuakasam/SamUser.
Installation
- Require JUser
composer require jroedel/zf3-juser
-
Copy
config/juser.config.php.distto 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.phpfile (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 thejuserroutes. This can be configured in yourjuser.global.phpfile.