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

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

meuhmeuhconcept/fos-user-bundle
===============================

FosUserBundle implementation for MeuhMeuhConcept

2.12(1y ago)01.3k1[2 PRs](https://github.com/MeuhMeuhConcept/FosUserBundle/pulls)proprietaryPHPPHP ~7.0

Since Dec 22Pushed 1y ago2 watchersCompare

[ Source](https://github.com/MeuhMeuhConcept/FosUserBundle)[ Packagist](https://packagist.org/packages/meuhmeuhconcept/fos-user-bundle)[ RSS](/packages/meuhmeuhconcept-fos-user-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (16)Versions (27)Used By (0)

MeuhMeuhConcept FOS UserBundle
==============================

[](#meuhmeuhconcept-fos-userbundle)

[![Build Status](https://camo.githubusercontent.com/d416a8653d4999f1f79392fc43ba4d75a72189619ce21081ff0f7dc15da9ad87/68747470733a2f2f7472617669732d63692e6f72672f4d6575684d657568436f6e636570742f466f735573657242756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/MeuhMeuhConcept/FosUserBundle)

Implementation of FosUserBundle for MeuhMeuhConcept

Installation
------------

[](#installation)

Add the repository in composer.json

```
{
       "require": {
               "meuhmeuhconcept/fos-user-bundle": "~2.0"",
       },
}
```

Via composer

```
composer require meuhmeuhconcept/fos-user-bundle
```

Installs bundles web assets under a public web directory

```
bin/console assets:install
```

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

[](#configuration)

### Add bundles

[](#add-bundles)

In app/AppKernel.php, add following lines

```
public function registerBundles()
{
    $bundles = [

        // ...

        new MMC\FosUserBundle\MMCFosUserBundle(),
        new FOS\UserBundle\FOSUserBundle(),

        // ...
    ];

    // ...
}
```

Create your own user entity

```
