neos/ldap
composer require neos/ldap
Ldap Authentication for Flow
dev-task/symfony-yaml-refactor
- Requires
- php: ^7.4 || ^8.0
- neos/eel: ^7.0 || ^8.0
- neos/flow: ^7.0 || ^8.0
- neos/neos: ^7.0 || ^8.0
- neos/utility-arrays: ^7.0 || ^8.0
- neos/utility-files: ^7.0 || ^8.0
- symfony/ldap: ^5.0
- symfony/yaml: ^5.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).