Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created December 17, 2013 19:35
Show Gist options
  • Save raphaeldealmeida/8011228 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/8011228 to your computer and use it in GitHub Desktop.
Autenticação doctrine
return array(
'doctrine' => array(
'authentication' => array(
'orm_default' => array(
'object_manager' => 'Doctrine\ORM\EntityManager',
'identity_class' => 'Application\Entity\User',
'identity_property' => 'email',
'credential_property' => 'password',
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment