PHPackages                             ggamover/yii2-aurinko - 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. ggamover/yii2-aurinko

ActiveYii2-extension

ggamover/yii2-aurinko
=====================

Authentication module

00PHP

Since Apr 5Pushed 1mo agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Aurinko
=======

[](#aurinko)

Aurinko is a Yii2 authentication module that provides user management, login, registration, and password recovery functionality. It includes ready-to-use controllers, models, and email templates to quickly integrate authentication into your application.

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

[](#installation)

The preferred way to install this extension is through [Composer](https://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist ggamover/yii2-aurinko "*"
```

or add

```
"ggamover/yii2-aurinko": "*"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

### Web Application Configuration

[](#web-application-configuration)

Add the module to your application configuration:

```
    'modules' => [
        ...
        'aurinko' => [
            'class' => ggamover\aurinko\Module::class,
        ],
    ],
```

To enable the built-in mail templates, add the module to the bootstrap section:

```
    'bootstrap' => [
        'aurinko',
        ...
    ],
```

Add the controller map

```
    'controllerMap' => [
        ...
        'auth' => [
            'class' => ggamover\aurinko\controllers\DefaultController::class,
            'viewPath' => '@vendor/ggamover/yii2-aurinko/views/default',
        ],
        'password' => [
            'class' => ggamover\aurinko\controllers\PasswordController::class,
            'viewPath' => '@vendor/ggamover/yii2-aurinko/views/password'
        ],
    ],
```

Configure the user component:

```
    'components' => [
        ...
        'user' => [
            'identityClass' => ggamover\aurinko\models\User::class,
            'enableSession' => false, // if rest api
            'loginUrl' => ['auth/login'],
            'enableAutoLogin' => true,
        ],
    ]
```

---

Console Application Configuration

To enable database migrations, add the migration path to the migrate controller:

```
    'controllerMap' => [
        ...
        'migrate' => [
            'class' => \yii\console\controllers\MigrateController::class,
            'migrationPath' => [
                '@app/migrations',
                '@vendor/ggamover/yii2-aurinko/migrations',
            ],
        ]
    ],
```

Add the module to enable console commands:

```
'modules' => [
    ...
        'auth' => [
            'class' => ggamover\aurinko\Module::class
        ]
    ],
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance60

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 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://avatars.githubusercontent.com/u/2330297?v=4)[Dmitry Evdokimov](/maintainers/ggamover)[@ggamover](https://github.com/ggamover)

---

Top Contributors

[![ggamover](https://avatars.githubusercontent.com/u/2330297?v=4)](https://github.com/ggamover "ggamover (11 commits)")

### Embed Badge

![Health badge](/badges/ggamover-yii2-aurinko/health.svg)

```
[![Health](https://phpackages.com/badges/ggamover-yii2-aurinko/health.svg)](https://phpackages.com/packages/ggamover-yii2-aurinko)
```

PHPackages © 2026

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