neos/ldap
composer require neos/ldap
Ldap Authentication for Flow
3.1.0
Readme excerpt
Neos Ldap Documentation Example LoginControllerLoginController.php:
<?php namespace My\Package\Controller; use Neos\Flow\Annotations as Flow; use Neos\Flow\Security\Authentication\Controller\AbstractAuthenticationController; /** * @Flow\Scope("singleton") */ class LoginController extends AbstractAuthenticationController { /** * Default action, displays the login screen * * @param string $username Optional: A username to prefill into the username field * @return void */ public function indexAction($username = NULL) { $this->view->assign('username', $username); } /** *…Read more
The same vendor provides 92 package(s).