PHPackages                             forci/login-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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. forci/login-bundle

ActiveSymfony-bundle[Authentication &amp; Authorization](/categories/authentication)

forci/login-bundle
==================

A Symfony ~3.0 Bundle that eases logging users to your Symfony application.

v0.5.1(2y ago)19.7k↓31.3%MITPHPPHP &gt;=8.0

Since Dec 14Pushed 2y ago2 watchersCompare

[ Source](https://github.com/forci/login-bundle)[ Packagist](https://packagist.org/packages/forci/login-bundle)[ RSS](/packages/forci-login-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (13)Used By (0)

Login Bundle
============

[](#login-bundle)

A Symfony ~3.0|~4.0 Bundle that eases logging users to your Symfony application.

Configuration Sample

```
forci_login:
    managers:
        frontend:
            firewall_name: frontend_area # Your firewall name
            hwi_oauth: # HWIOAuthBundle integration - for use directly with OAuth Access Tokens
                enabled: true
                token_class: Forci\Bundle\LoginBundle\HWIOAuth\OAuthToken # You may change the token class to this
                # Or to your own class that extends the Bundle's token class. Using the above example
                # In combination with the below setting will force the Token to return true to isAuthenticated calls
                # This resolves HWIOAuthBundle's issues with serialization and/or your users not having any roles by default
                # Which mostly leads to making HTTP requests to the OAuth APIs on E V E R Y page load.
                # PS You may also use that class, or your own implementation of this idea and a custom
                # \HWI\Bundle\OAuthBundle\Security\Core\Authentication\Provider\OAuthProvider to prevent that
                # In the case of a normal web-redirect login flow with the bundle
                always_authenticated: true
                user_provider: app.auth.user_provider

```

```
