jroedel/zf2-juser

A fork of manuakasam/SamUser. Glues together LmcUser, BjyAuthorize, SlmLocale, and GoalioRememberMe

1.0.0 2022-07-19 20:37 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:31:52 UTC


README

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
  1. Copy config/juser.config.php.dist to your Application config folder, and customize the values.

  2. Create the two tables with the sql in config/database.sql.dist.

  3. Enable all the modules in your application.config.php file (order is important):

    return [
        'modules' => [
            // ...
            'ZfcBase',
            'LmcUser',
            'BjyAuthorize',
            'SlmLocale',
            'GoalioRememberMe',
            'JUser',
        ],
        // ...
    ];
  1. 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.