PHPackages                             cookyii/module-account - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cookyii/module-account

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

cookyii/module-account
======================

Account management module for Cookyii CMF

15342PHP

Since Aug 4Pushed 8y ago1 watchersCompare

[ Source](https://github.com/cookyii/module-account)[ Packagist](https://packagist.org/packages/cookyii/module-account)[ RSS](/packages/cookyii-module-account/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Accounts management module
==========================

[](#accounts-management-module)

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

[](#installation)

```
composer require cookyii/module-account:dev-master
```

Configuration
-------------

[](#configuration)

### 1. Update config

[](#1-update-config)

In `backend` `app` config in section `modules` add `cookyii\modules\Account\backend\Module`and in section `bootstrap` add `account`:

```
// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'account'
    ],
    'modules' => [
        // some modules ...
        'account' => 'cookyii\modules\Account\backend\Module',
    ],
    // ...
];
```

### 2. Dependencies

[](#2-dependencies)

Also, you need to configure the following modules (they are already downloaded):

- [`cookyii/module-postman`](https://github.com/cookyii/module-postman)

```
// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'account', 'postman',
    ],
    'modules' => [
        // some modules ...
        'account' => 'cookyii\modules\Account\backend\Module',
        'postman' => 'cookyii\modules\Postman\backend\Module',
    ],
    // ...
];
```

### 3. Add new permissions

[](#3-add-new-permissions)

In `rbac/update` command add "merge" class `cookyii\modules\Account\backend\Permissions`:

```
// ./common/commands/RbacCommand.php

class RbacCommand extends \rmrevin\yii\rbac\Command
{

    public $backendMerge = [
        // ...
        'cookyii\modules\Account\backend\Permissions',
        'cookyii\modules\Postman\backend\Permissions',
    ];

    // ...
}
```

### 4. Update permissions

[](#4-update-permissions)

```
./backend rbac/update
```

### 5. Execute new migrations

[](#5-execute-new-migrations)

```
./frontend migrate
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1ed2a8c869410bcc2f79245fe77cf156db86c83fed1c60c3dea8df1e04966788?d=identicon)[rmrevin](/maintainers/rmrevin)

---

Top Contributors

[![rmrevin](https://avatars.githubusercontent.com/u/803507?v=4)](https://github.com/rmrevin "rmrevin (125 commits)")

### Embed Badge

![Health badge](/badges/cookyii-module-account/health.svg)

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

PHPackages © 2026

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