PHPackages                             ruvents/manual-authentication-bundle - 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. ruvents/manual-authentication-bundle

AbandonedArchivedSymfony-bundle

ruvents/manual-authentication-bundle
====================================

RUVENTS Manual Authentication Bundle

0.1.1(8y ago)1461MITPHPPHP ^7.0

Since Aug 3Pushed 8y ago3 watchersCompare

[ Source](https://github.com/vudaltsov-legacy/manual-authentication-bundle)[ Packagist](https://packagist.org/packages/ruvents/manual-authentication-bundle)[ RSS](/packages/ruvents-manual-authentication-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

RUVENTS Manual Authentication Bundle
====================================

[](#ruvents-manual-authentication-bundle)

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

[](#configuration)

```
# app/config/security.yml
security:
  firewalls:
    dev:
      pattern:  ^/(_(profiler|wdt)|css|images|js)/
      security: false

    main:
      # add manual auth to any firewall (it has no options)
      manual: ~
      anonymous: ~
      provider: user_entity_provider
      form_login:
        # ...
      logout:
        # ...
      remember_me:
        secret: "%secret%"
        always_remember_me: true
```

Authenticating a User in the controller
---------------------------------------

[](#authenticating-a-user-in-the-controller)

```
