Pantarei\Bundle\UserBundle is a Symfony2 Bundle, which integrate Pantarei\User as easy as possible into your Symfony2 Project.
First you need to add pantarei/user-bundle
to composer.json
:
{
"require": {
"pantarei/user-bundle": "1.0.*@dev"
}
}
You also have to add UserBundle
to your AppKernel.php
:
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new Pantarei\Bundle\UserBundle\PantareiUserBundle()
);
return $bundles;
}
}
This project is coverage with phpunit test cases, where CI result can be found from https://travis-ci.org/pantarei/user-bundle.
Code coverage CI result can be found from https://coveralls.io/r/pantarei/user-bundle.
If you hope to run the test cases locally, please execute
phpunit -c phpunit.xml.dist
. Coverage report can be found from
build/logs/html
folder.
- http://pantarei.github.io/user-bundle/
- https://coveralls.io/r/pantarei/user-bundle
- https://github.com/pantarei/user-bundle
- https://packagist.org/packages/pantarei/user-bundle
- https://travis-ci.org/pantarei/user-bundle
- The bundle is licensed under the MIT License