PHPackages                             gravitatenz/fta-auth - 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. gravitatenz/fta-auth

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

gravitatenz/fta-auth
====================

Simple symfony authentication and security helpers

v0.2.23(4y ago)032BSD-3-CLAUSEPHPPHP &gt;=7.4

Since Aug 25Pushed 2y ago2 watchersCompare

[ Source](https://github.com/GravitateNZ/fta-auth)[ Packagist](https://packagist.org/packages/gravitatenz/fta-auth)[ RSS](/packages/gravitatenz-fta-auth/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (10)Dependencies (3)Versions (14)Used By (0)

fta-auth
========

[](#fta-auth)

Simple helpers for augmenting authentication such as account lockout

Currently implements a simple lockout mechanism, a recaptcha checker and a way of chaining. These will probably go away when Symfony 5.4 or 6.0 is release

Configure the lister with a user provider then attach the User checker to a firewall.

```
    firewalls:
        manage:
            anonymous: ~
            pattern: ^/manage
            form_login:
                provider: manage
                check_path: /manage/login_check
                login_path: /manage/login
                default_target_path: /manage/after-login

            user_checker: userchecker.chain
```

```
    userchecker.locked_user:
      class: 'GravitateNZ\fta\auth\Security\UserLockedUserChecker'
      arguments:
        $lockoutCount: 10
        $interval: "PT12H"

    userchecker.recaptcha:
      class: 'GravitateNZ\fta\auth\Security\RecaptchaUserChecker'
      arguments:
        $recaptchaLimit: 1
        $secretKey: '%env(RECAPTCHA_SECRET_KEY)%'

    userchecker.chain:
      class: 'GravitateNZ\fta\auth\Security\ChainUserChecker'
      arguments:
        $userCheckers:
          - '@userchecker.locked_user'
          - '@userchecker.recaptcha'
```

(c) 2021 Gravitate

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

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

Total

12

Last Release

1750d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1974218?v=4)[John Lennard](/maintainers/yakmoose)[@yakmoose](https://github.com/yakmoose)

---

Top Contributors

[![yakmoose](https://avatars.githubusercontent.com/u/1974218?v=4)](https://github.com/yakmoose "yakmoose (31 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/gravitatenz-fta-auth/health.svg)

```
[![Health](https://phpackages.com/badges/gravitatenz-fta-auth/health.svg)](https://phpackages.com/packages/gravitatenz-fta-auth)
```

###  Alternatives

[symfony/security-bundle

Provides a tight integration of the Security component into the Symfony full-stack framework

2.5k181.3M2.2k](/packages/symfony-security-bundle)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

51390.8k2](/packages/web-auth-webauthn-framework)[symfony/security-http

Symfony Security Component - HTTP Integration

1.7k172.8M347](/packages/symfony-security-http)[web-auth/webauthn-symfony-bundle

FIDO2/Webauthn Security Bundle For Symfony

65474.5k9](/packages/web-auth-webauthn-symfony-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70717.2M40](/packages/gesdinet-jwt-refresh-token-bundle)

PHPackages © 2026

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