PHPackages                             piko/user-module - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. piko/user-module

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

piko/user-module
================

Piko user management module.

v0.5(5mo ago)08LGPL-3.0PHP

Since Dec 7Pushed 4mo agoCompare

[ Source](https://github.com/piko-framework/user-module)[ Packagist](https://packagist.org/packages/piko/user-module)[ RSS](/packages/piko-user-module/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (11)Versions (6)Used By (0)

Piko user module
================

[](#piko-user-module)

User management module for [Piko](https://piko-framework.github.io/) based projects.

Features
--------

[](#features)

- Optional registration
- Registration with an optional confirmation per mail
- Password recovery
- Account and profile management
- User management interface
- Permissions management (RBAC)
- Support for MYSQL ans Sqlite

Installation
------------

[](#installation)

1 - Install module via composer:

```
composer require piko/user-module
```

2 - Edit your Piko config :

```
[
  'components' => [
    // ...
    'Piko\User' => [
        'identityClass' => 'Piko\UserModule\Models\User',
        'checkAccess' => 'Piko\UserModule\AccessChecker::checkAccess'
    ],
  ],
  'modules' => [
    // ...
    'user' => [
      'class' => 'Piko\UserModule',
      'adminRole' => 'admin',
      'allowUserRegistration' => true
    ],
  ],
  'bootstrap' => ['user'],
]
```

3 - Install module tables. Create a php file at the root folder of your project (ex: install.php) and put this code :

```
require(__DIR__ . '/vendor/autoload.php');

(new \piko\Application(require __DIR__ . '/config.php'));

\piko\user\Module::install();
\piko\user\Module::createUser();
```

4 - Execute install.php on the command line : `php install.php` and follow instructions to create the admin user.

Routes
------

[](#routes)

- **/user/default/login** : Process login
- **/user/default/logout** : Process logout
- **/user/default/register** : Process user registration
- **/user/default/edit** : User account form
- **/user/admin/users** : Manage users, roles, permissions

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance73

Regular maintenance activity

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~452 days

Total

5

Last Release

178d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/001b70c85d853a2aae5f1bf74a1ff7ad77ffcec2d423090d67293bde99158350?d=identicon)[ilhooq](/maintainers/ilhooq)

---

Top Contributors

[![ilhooq](https://avatars.githubusercontent.com/u/1500886?v=4)](https://github.com/ilhooq "ilhooq (29 commits)")

---

Tags

userrbacmodulepiko

###  Code Quality

TestsCodeception

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/piko-user-module/health.svg)

```
[![Health](https://phpackages.com/badges/piko-user-module/health.svg)](https://phpackages.com/packages/piko-user-module)
```

###  Alternatives

[2amigos/yii2-usuario

Highly customizable and extensible user management, authentication, and authorization Yii2 extension

298275.5k14](/packages/2amigos-yii2-usuario)[lm-commons/lmc-rbac-mvc

Laminas Framework MVC Module that provides a layer of features of Laminas\\Permissions\\Rbac

12401.0k7](/packages/lm-commons-lmc-rbac-mvc)[saeven/zf3-circlical-user

Complete user entity, rights, and access module for Laminas

3718.7k](/packages/saeven-zf3-circlical-user)[budyaga/yii2-users

Module for manage users and their rights with the support of registration through social services and assigned to each user more than one social service.

409.1k](/packages/budyaga-yii2-users)[org_heigl/hybridauth

Lightweight Authentication Module for Zend-Framework 2 using the hybridauth-library

211.9k](/packages/org-heigl-hybridauth)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
