Created
December 17, 2013 19:35
-
-
Save raphaeldealmeida/8011228 to your computer and use it in GitHub Desktop.
Autenticação doctrine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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