Zend 2 + doctrine 2 Auth Adapter
问题 I'm looking for a tutorial on authentication with Zend 2 and Doctrine 2. In particular the creation of the controller and adapter. The official documentation is too global not help me enough. thank you EDIT: i use "Doctrine Entity" (namespace User\Entity;) The Entity is register in module.config.php file : 'doctrine' => array( 'driver' => array( __NAMESPACE__ . '_driver' => array( 'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver', 'cache' => 'array', 'paths' => array(__DIR__ . '/..