jroedel / zf2-juser
A fork of manuakasam/SamUser. Glues together LmcUser, BjyAuthorize, SlmLocale, and GoalioRememberMe
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
pkg:composer/jroedel/zf2-juser
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: 2025-10-12 01:28: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.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.