Offers a simple implementation of the Symfony Authentication.
https://github.com/equinoxe/SimpleOutputBundle
git submodule add git://github.com/equinoxe/AuthenticationBundle.git src/Equinoxe/AuthenticationBundle
// app/autoload.php
$loader->registerNamespaces(array(
'Equinoxe' => __DIR__ . '/../src',
// your other namespaces
);
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Equinoxe\AuthenticationBundle\AuthenticationBundle(),
// ...
);
}
// app/config/routing.yml
authentication:
resource: @AuthenticationBundle/Resources/config/routing.yml