PHPackages                             shield-wall/simple-authenticator - 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. shield-wall/simple-authenticator

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

shield-wall/simple-authenticator
================================

Simple symfony authenticator

v0.3.3(3y ago)037MITPHPPHP ^8.1

Since Jul 15Pushed 3y ago1 watchersCompare

[ Source](https://github.com/shield-wall/simple-authenticator)[ Packagist](https://packagist.org/packages/shield-wall/simple-authenticator)[ RSS](/packages/shield-wall-simple-authenticator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (4)Versions (8)Used By (0)

Simple authenticator
====================

[](#simple-authenticator)

It's a simple symfony authenticator, for you be able to log in just with email.

### Install

[](#install)

```
composer req shield-w4ll/simple-authenticator
```

> **Note**We relly recommend use this package in **dev environment** only.

### Configuration

[](#configuration)

```
#config/packages/shield_wall.yaml
when@dev:
  simple_authenticator:
    route:
      redirect_success: 'profile_edit'
      redirect_failure: 'app_login'

  security:
    firewalls:
      main:
        custom_authenticators:
          - ShieldWall\SimpleAuthenticator\Security\EmailAuthenticator
```

```
#config/routes/shield_wall.yaml
simple_authenticator_login:
  prefix: ^/
  path: /simple_authenticator/login
```

```
#config/service.yaml
ShieldWall\SimpleAuthenticator\Security\EmailAuthenticator:
        arguments:
            - '@Symfony\Component\Routing\Generator\UrlGeneratorInterface'
            - '@App\Repository\UserRepository'
            - '%shield_wall.simple_authenticator.route.redirect_success%'
            - '%shield_wall.simple_authenticator.route.redirect_failure%'
```

```
//YourController.php
public function yourAction()
{
        $simpleAuthenticatorForm = $this->createForm(SimpleAuthenticatorType::class, null, [
            'action' => $this->generateUrl('simple_authenticator_login'),
        ]);
        $simpleAuthenticatorFromView = $simpleAuthenticatorForm->createView();

        return $this->render('your_template.html.twig', [
            'simpleAuthenticatorFrom' => $simpleAuthenticatorFromView,
        ]);
}

//your_file.html.twig
{{ form(simpleAuthenticatorFrom) }}
```

Repository

```
//src/Repository/UserRepository.php
class UserRepository extends ServiceEntityRepository implements EmailRepositoryInterface
{
    public function findOneByEmail(string $email): UserInterface
    {
        return $this->findOneBy(['email' => $email]);
    }
}
```

TODO

- need to see someway to get the route name from controller `simple_authenticator_login`
- import route as resource
- service should be declared automatically.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

Total

6

Last Release

1361d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6086818787fd29e2e774abc19336be99127fdec07dceb366aa3b65ce2c50912b?d=identicon)[erison](/maintainers/erison)

---

Top Contributors

[![eerison](https://avatars.githubusercontent.com/u/6358755?v=4)](https://github.com/eerison "eerison (8 commits)")

---

Tags

authenticationloginphpsymfonysymfony-bundle

### Embed Badge

![Health badge](/badges/shield-wall-simple-authenticator/health.svg)

```
[![Health](https://phpackages.com/badges/shield-wall-simple-authenticator/health.svg)](https://phpackages.com/packages/shield-wall-simple-authenticator)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[hwi/oauth-bundle

Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony.

2.4k21.5M69](/packages/hwi-oauth-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

50570.7k1](/packages/web-auth-webauthn-framework)[web-auth/webauthn-symfony-bundle

FIDO2/Webauthn Security Bundle For Symfony

63397.4k6](/packages/web-auth-webauthn-symfony-bundle)

PHPackages © 2026

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