sarsport/sarsport-user-bundle

Extend FosUserBundle

dev-master 2013-06-27 17:49 UTC

This package is not auto-updated.

Last update: 2024-04-27 12:39:36 UTC


README

Introduction

Build Status

Installation

Using Composer (recommended)

To install SarSportUserBundle with Composer just add the following to your composer.json file:

// composer.json
{
    // ...
    require: {
        // ...
        "sarsport/sarsport-user-bundle": "dev"
    }
}

Then, you can install the new dependencies by running Composer’s update command from the directory where your composer.json file is located:

$ php composer.phar update

Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:

<?php
// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new SarSport\Bundle\UserBundle\SarSportUserBundle(),
    // ...
);

Configuration

SarSportUserBundle requires no initial configuration to get you started.