An open API service indexing awesome lists of open source software.

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

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.