https://github.com/jroedel/laminas-juser
User management module for ZfcUser
https://github.com/jroedel/laminas-juser
authentication user-management zf3
Last synced: about 1 month ago
JSON representation
User management module for ZfcUser
- Host: GitHub
- URL: https://github.com/jroedel/laminas-juser
- Owner: jroedel
- License: mit
- Created: 2016-11-21T17:11:35.000Z (over 9 years ago)
- Default Branch: 1.0.x
- Last Pushed: 2022-08-03T00:37:29.000Z (almost 4 years ago)
- Last Synced: 2024-11-30T13:41:21.579Z (over 1 year ago)
- Topics: authentication, user-management, zf3
- Language: PHP
- Homepage:
- Size: 265 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
JUser
=======
A simple Module that glues together LmcUser, BjyAuthorize, SlmLocale, GoalioRememberMe and Laminas\Db. A fork of `manuakasam/SamUser`.
Installation
============
1. Require JUser
```
composer require jroedel/zf3-juser
```
2. Copy `config/juser.config.php.dist` to your Application config folder, and customize the values.
3. Create the two tables with the sql in `config/database.sql.dist`.
4. Enable all the modules in your `application.config.php` file (order is important):
```
return [
'modules' => [
// ...
'ZfcBase',
'LmcUser',
'BjyAuthorize',
'SlmLocale',
'GoalioRememberMe',
'JUser',
],
// ...
];
```
5. The GUI can be accessed from `/users`. Make sure to double-check that only administers have access to the `juser` routes. This can be configured in your `juser.global.php` file.