Installation ============ Set up the SonataUserBundle --------------------------- Add the bundle to your project: git://github.com/sonata-project/SonataUserBundle.git // dependency bundle git://github.com/sonata-project/SonataEasyExtendsBundle.git git://github.com/sonata-project/SonataAdminBundle.git Adjust your autoload.php so they are found. In your AppKernel you enable the bundles: .. code-block:: php registerNamespaces(array( 'Sonata' => __DIR__.'../vendor/bundles', 'Application' => __DIR__, // ... other declarations )); Configuration ------------- Then add these bundles in the config mapping definition (or enable `auto_mapping `_): .. code-block:: yaml # app/config/config.yml doctrine: orm: entity_managers: default: mappings: ApplicationSonataUserBundle: ~ SonataUserBundle: ~