PHPackages                             geniv/nette-identity-login - 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. geniv/nette-identity-login

ActiveLibrary

geniv/nette-identity-login
==========================

Identity login extension for Nette Framework

v1.1.4(6y ago)0827MITPHPPHP &gt;=7.0

Since Feb 28Pushed 6y ago1 watchersCompare

[ Source](https://github.com/geniv/nette-identity-login)[ Packagist](https://packagist.org/packages/geniv/nette-identity-login)[ RSS](/packages/geniv-nette-identity-login/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (9)Used By (0)

Identity login
==============

[](#identity-login)

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

[](#installation)

```
$ composer require geniv/nette-identity-login
```

or

```
"geniv/nette-identity-login": "^1.1"
```

require:

```
"php": ">=7.0",
"nette/application": ">=2.4",
"nette/di": ">=2.4",
"nette/security": ">=2.4",
"nette/utils": ">=2.4",
"geniv/nette-general-form": ">=1.0"
```

Include in application
----------------------

[](#include-in-application)

neon configure:

```
# identity login
identityLogin:
#   autowired: true
#   formContainer: Identity\Login\FormContainer
```

neon configure extension:

```
extensions:
    identityLogin: Identity\Login\Bridges\Nette\Extension
```

presenters:

```
protected function createComponentIdentityLogin(ILoginForm $loginForm): ILoginForm
{
    //$loginForm->setTemplatePath(__DIR__ . '/templates/LoginForm.latte');
    $loginForm->onLoggedIn[] = function (User $user) {
        $this->flashMessage('Login!', 'info');
    };
    $loginForm->onAfterLoggedIn[] = function (User $user) {
        $this->redirect('this');
    };
    $loginForm->onLoggedInException[] = function (AuthenticationException $e) {
        $this->flashMessage('Login exception! ' . $e->getMessage(), 'danger');
    };
    $loginForm->onLoggedOut[] = function (User $user) {
        $this->flashMessage('Logout!', 'info');
    };
    $loginForm->onAfterLoggedOut[] = function (User $user) {
        $this->redirect('this');
    };
    return $loginForm;
}
```

usage:

```
    {if !$user->isLoggedIn()}
        {control identityLogin}
    {else}
        Logout
    {/if}
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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 ~75 days

Recently: every ~111 days

Total

7

Last Release

2542d ago

PHP version history (2 changes)v1.0.0PHP &gt;=7.0.0

v1.1.1PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/bc7e200eb4e96d99020297684063209160ea1347d8a2a8b4cd769d532204867e?d=identicon)[geniv](/maintainers/geniv)

---

Top Contributors

[![geniv](https://avatars.githubusercontent.com/u/563659?v=4)](https://github.com/geniv "geniv (21 commits)")

---

Tags

netteuseridentitylogingeniv

### Embed Badge

![Health badge](/badges/geniv-nette-identity-login/health.svg)

```
[![Health](https://phpackages.com/badges/geniv-nette-identity-login/health.svg)](https://phpackages.com/packages/geniv-nette-identity-login)
```

###  Alternatives

[nette/web-project

Nette: Standard Web Project

10991.8k](/packages/nette-web-project)[nasext/dependent-select-box

Dependent Select Box for Nette Framework.

21262.8k2](/packages/nasext-dependent-select-box)

PHPackages © 2026

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