PHPackages                             gollumsf/user-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. gollumsf/user-bundle

ActiveSymfony-bundle

gollumsf/user-bundle
====================

Very simple and overridable user bundle

23PHP

Since Feb 14Pushed 8y ago2 watchersCompare

[ Source](https://github.com/GollumSF/user-bundle)[ Packagist](https://packagist.org/packages/gollumsf/user-bundle)[ RSS](/packages/gollumsf-user-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

GollumSFUserBundle
==================

[](#gollumsfuserbundle)

[![Build Status](https://camo.githubusercontent.com/981bfb53154c5e60a11a9a0280251f08d8ad27e420675a1b67417b051a4371c0/68747470733a2f2f7472617669732d63692e6f72672f476f6c6c756d53462f757365722d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/GollumSF/user-bundle)[![License](https://camo.githubusercontent.com/7cacdafcf0515bd5520dafe1cea433f5e10fa634795d63ab323eaf0d8d4a242c/68747470733a2f2f706f7365722e707567782e6f72672f676f6c6c756d73662f757365722d62756e646c652f6c6963656e7365)](https://packagist.org/packages/gollumsf/user-bundle)[![Latest Stable Version](https://camo.githubusercontent.com/6fe2f7918807481b487ec1f7101138af5c0553303cba5739320bd916af1ea6f4/68747470733a2f2f706f7365722e707567782e6f72672f676f6c6c756d73662f757365722d62756e646c652f762f737461626c65)](https://packagist.org/packages/gollumsf/user-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/4eeb049ffe91139d14841f7acbab69c5532bfe11dbc02768e927e2782586e930/68747470733a2f2f706f7365722e707567782e6f72672f676f6c6c756d73662f757365722d62756e646c652f762f756e737461626c65)](https://packagist.org/packages/gollumsf/user-bundle)

Installation:
-------------

[](#installation)

### AppKernel.php

[](#appkernelphp)

```
class AppKernel extends Kernel {

	public function registerBundles() {

		$bundles = [

			// [...] //

			new GollumSF\CoreBundle\GollumSFCoreBundle(),
			new GollumSF\CoreBundle\GollumSFMailBundle(),
			new GollumSF\UserBundle\GollumSFUserBundle(),

			// [...] //
		}
	}
}
```

### config.yml

[](#configyml)

```
gollum_sf_user:
    user:
        entity:  GollumSF\UserBundle\Entity\User                            # (optional) Entity class of user for login implement GollumSF\UserBundle\Entity\UserInterface
        manager: GollumSF\UserBundle\Manager\UserManager                    # (optional) Manager class implement GollumSF\UserBundle\Manager\ManagerInterface
    url:
        homepage: /                                                         # (optional) Homepage URL for redirect after login
    twig:
        base:           '::base.html.twig'                                  # (optional) Twig loaded when the base_auth extends
        base_auth:      'GollumSFUserBundle:Auth:base.html.twig'            # (optional) Twig loaded when the form page extends
        login:          'GollumSFUserBundle:Auth:login.html.twig'           # (optional) Twig loaded for login page
        register:       'GollumSFUserBundle:Auth:register.html.twig'        # (optional) Twig loaded for register page
        reset_password: 'GollumSFUserBundle:Auth:resetPassword.html.twig'   # (optional) Twig loaded for reset password page
    form:
        login:          GollumSF\UserBundle\Form\LoginType                  # (optional) FormType for login
        register:       GollumSF\UserBundle\Form\RegisterType               # (optional) FormType for register
        reset_password: GollumSF\UserBundle\Form\ResetPasswordType          # (optional) FormType for reset password
    url:
        homepage:       /                                                   # (optional) Homepage URL for redirect after login
        login:          /login                                              # (optional) Login URL must matched the routing value
        register:       /register                                           # (optional) Register URL must matched the routing value
        reset_password: /reset-password                                     # (optional) Redirect URL must matched the routing value
```

### routing.yml

[](#routingyml)

Must matched the config.yml urls values. By default the 3 urls is /login, /register, /reset-password

```
gsf_user:
    resource: "@GollumSFUserBundle/Controller/"
    type:     gsf_annotation
```

### security.yml

[](#securityyml)

```
security:
    role_hierarchy:
        ROLE_USER:  []
        ROLE_ADMIN: [ROLE_USER]
        ROLE_SUPER_ADMIN: [ROLE_ADMIN]

    providers:
        main:
            entity: { class: "GollumSFUserBundle:User" } # Must match gollum_sf_user.user.entity

    firewalls:
        main:
            pattern: ^/   # Path where enable the authentification
            gsf_user: ~   # Enable the authentification
            anonymous: ~  # Enable the anonymous authentification
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6690bb36165854e1db86762d56c22351ff844b12f59e5c91993a6d793f098cfb?d=identicon)[Smeagolworms4](/maintainers/Smeagolworms4)

---

Top Contributors

[![Smeagolworms4](https://avatars.githubusercontent.com/u/4448640?v=4)](https://github.com/Smeagolworms4 "Smeagolworms4 (15 commits)")

### Embed Badge

![Health badge](/badges/gollumsf-user-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/gollumsf-user-bundle/health.svg)](https://phpackages.com/packages/gollumsf-user-bundle)
```

PHPackages © 2026

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