PHPackages                             fierwebdesign/yii-user - 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. fierwebdesign/yii-user

ActiveYii-extension[Authentication &amp; Authorization](/categories/authentication)

fierwebdesign/yii-user
======================

A yii-module for user management built on top of crisu83/yii-auth

092PHP

Since May 7Pushed 13y ago1 watchersCompare

[ Source](https://github.com/fierwebdesign/yii-user)[ Packagist](https://packagist.org/packages/fierwebdesign/yii-user)[ RSS](/packages/fierwebdesign-yii-user/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Yii-User Installation
=====================

[](#yii-user-installation)

Download
--------

[](#download)

Download or checkout (SVN/Git) from  and unpack files in your protected/modules/user

Git clone
---------

[](#git-clone)

```
clone git git@github.com:mishamx/yii-user.git

```

Configure
---------

[](#configure)

Change your config main:

```
return array(
    #...
    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
        'application.modules.user.models.*',
        'application.modules.user.components.*',
    ),

    #...
    'modules'=>array(
        #...
        'user'=>array(
            # encrypting method (php hash function)
            'hash' => 'md5',

            # send activation email
            'sendActivationMail' => true,

            # allow access for non-activated users
            'loginNotActiv' => false,

            # activate user on registration (only sendActivationMail = false)
            'activeAfterRegister' => false,

            # automatically login from registration
            'autoLogin' => true,

            # registration path
            'registrationUrl' => array('/user/registration'),

            # recovery password path
            'recoveryUrl' => array('/user/recovery'),

            # login form path
            'loginUrl' => array('/user/login'),

            # page after login
            'returnUrl' => array('/user/profile'),

            # page after logout
            'returnLogoutUrl' => array('/user/login'),
        ),
        #...
    ),

    #...
    // application components
    'components'=>array(
    #...
        'db'=>array(
        #...
            'tablePrefix' => 'tbl_',
        #...
        ),
        #...
        'user'=>array(
            // enable cookie-based authentication
            'class' => 'WebUser',
        ),
    #...
    ),
    #...
);

```

Change your config console:

```
return array(
    #...
    'modules'=>array(
        #...
        'user'=>array(
            # encrypting method (php hash function)
            'hash' => 'md5',

            # send activation email
            'sendActivationMail' => true,

            # allow access for non-activated users
            'loginNotActiv' => false,

            # activate user on registration (only sendActivationMail = false)
            'activeAfterRegister' => false,

            # automatically login from registration
            'autoLogin' => true,

            # registration path
            'registrationUrl' => array('/user/registration'),

            # recovery password path
            'recoveryUrl' => array('/user/recovery'),

            # login form path
            'loginUrl' => array('/user/login'),

            # page after login
            'returnUrl' => array('/user/profile'),

            # page after logout
            'returnLogoutUrl' => array('/user/login'),
        ),
        #...
    ),
    #...
);

```

Install
-------

[](#install)

Run command: yiic migrate --migrationPath=user.migrations

Input admin login, email and password

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 82.6% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2226998?v=4)[fierwebdesign](/maintainers/fierwebdesign)[@fierwebdesign](https://github.com/fierwebdesign)

---

Top Contributors

[![mishamx](https://avatars.githubusercontent.com/u/878476?v=4)](https://github.com/mishamx "mishamx (90 commits)")[![fierwebdesign](https://avatars.githubusercontent.com/u/2226998?v=4)](https://github.com/fierwebdesign "fierwebdesign (3 commits)")[![kirill-dubelevich](https://avatars.githubusercontent.com/u/485340?v=4)](https://github.com/kirill-dubelevich "kirill-dubelevich (2 commits)")[![rmenor](https://avatars.githubusercontent.com/u/531622?v=4)](https://github.com/rmenor "rmenor (2 commits)")[![schmunk42](https://avatars.githubusercontent.com/u/649031?v=4)](https://github.com/schmunk42 "schmunk42 (2 commits)")[![jfgaviria](https://avatars.githubusercontent.com/u/3501829?v=4)](https://github.com/jfgaviria "jfgaviria (2 commits)")[![ametad](https://avatars.githubusercontent.com/u/1582541?v=4)](https://github.com/ametad "ametad (2 commits)")[![josiasmontag](https://avatars.githubusercontent.com/u/1945577?v=4)](https://github.com/josiasmontag "josiasmontag (1 commits)")[![daris](https://avatars.githubusercontent.com/u/183948?v=4)](https://github.com/daris "daris (1 commits)")[![hastenax](https://avatars.githubusercontent.com/u/1911734?v=4)](https://github.com/hastenax "hastenax (1 commits)")[![Alan01252](https://avatars.githubusercontent.com/u/112859?v=4)](https://github.com/Alan01252 "Alan01252 (1 commits)")[![marsuboss](https://avatars.githubusercontent.com/u/5856?v=4)](https://github.com/marsuboss "marsuboss (1 commits)")[![Nayjest](https://avatars.githubusercontent.com/u/153999?v=4)](https://github.com/Nayjest "Nayjest (1 commits)")

### Embed Badge

![Health badge](/badges/fierwebdesign-yii-user/health.svg)

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

###  Alternatives

[kartik-v/yii2-password

Useful password strength validation utilities for Yii Framework 2.0

761.2M17](/packages/kartik-v-yii2-password)

PHPackages © 2026

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