unitedasian / user-bundle
User bundle
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
pkg:composer/unitedasian/user-bundle
Requires
- friendsofsymfony/user-bundle: 2.0.*@dev
- unitedasian/propel-session-bundle: ~1.0
This package is auto-updated.
Last update: 2025-10-29 01:28:54 UTC
README
Requirements
This bundle requires the FOSUserBundle to be installed.
Installation
Add the following to your project's composer.json file:
{ require: { "uam/user-bundle": "dev-master" } }
Register the bundle:
#app/AppKernel.php public function registerBundles() { $bundles = array( … new UAMUserBundle() ); return $bundles; }
If you are using assetic, add the bundle to the assetic configuration:
#config.yml
assetic:
UAMUserBundle
Also install FOSUserBundle as per the bundle's instructions.
Usage
To override the templates, create the a UAMUserBundle/views directory under your app's Resources directory.
The layout.html.twig template is used by all pages generated by the bundle.
The base.email.twig template is used by all emails sent by the bundle.