├── .php_cs.dist ├── CHANGELOG.md ├── DependencyInjection ├── Configuration.php └── FR3DLdapExtension.php ├── Driver ├── LdapDriverException.php ├── LdapDriverInterface.php └── ZendLdapDriver.php ├── Exception └── SanitizingException.php ├── FR3DLdapBundle.php ├── Hydrator ├── AbstractHydrator.php ├── HydrateWithMapTrait.php ├── HydratorInterface.php └── LegacyHydrator.php ├── Ldap ├── LdapManager.php └── LdapManagerInterface.php ├── Model └── LdapUserInterface.php ├── README.md ├── Resources ├── config │ ├── ldap_driver.xml │ ├── security.xml │ ├── services.xml │ └── validator.xml ├── doc │ ├── cookbook │ │ ├── active-directory.md │ │ ├── custom_hydrator.md │ │ └── validator.md │ └── index.md ├── meta │ └── LICENSE └── translations │ └── validators.en.yml ├── Security ├── Authentication │ └── LdapAuthenticationProvider.php ├── Factory │ ├── FormLoginLdapFactory.php │ └── HttpBasicLdapFactory.php └── User │ └── LdapUserProvider.php ├── UPGRADE-2.0.md ├── UPGRADE-3.0.md ├── Validator ├── Unique.php └── UniqueValidator.php └── composer.json /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/FR3DLdapExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/DependencyInjection/FR3DLdapExtension.php -------------------------------------------------------------------------------- /Driver/LdapDriverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Driver/LdapDriverException.php -------------------------------------------------------------------------------- /Driver/LdapDriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Driver/LdapDriverInterface.php -------------------------------------------------------------------------------- /Driver/ZendLdapDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Driver/ZendLdapDriver.php -------------------------------------------------------------------------------- /Exception/SanitizingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Exception/SanitizingException.php -------------------------------------------------------------------------------- /FR3DLdapBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/FR3DLdapBundle.php -------------------------------------------------------------------------------- /Hydrator/AbstractHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Hydrator/AbstractHydrator.php -------------------------------------------------------------------------------- /Hydrator/HydrateWithMapTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Hydrator/HydrateWithMapTrait.php -------------------------------------------------------------------------------- /Hydrator/HydratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Hydrator/HydratorInterface.php -------------------------------------------------------------------------------- /Hydrator/LegacyHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Hydrator/LegacyHydrator.php -------------------------------------------------------------------------------- /Ldap/LdapManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Ldap/LdapManager.php -------------------------------------------------------------------------------- /Ldap/LdapManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Ldap/LdapManagerInterface.php -------------------------------------------------------------------------------- /Model/LdapUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Model/LdapUserInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/ldap_driver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/config/ldap_driver.xml -------------------------------------------------------------------------------- /Resources/config/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/config/security.xml -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/config/validator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/config/validator.xml -------------------------------------------------------------------------------- /Resources/doc/cookbook/active-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/doc/cookbook/active-directory.md -------------------------------------------------------------------------------- /Resources/doc/cookbook/custom_hydrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/doc/cookbook/custom_hydrator.md -------------------------------------------------------------------------------- /Resources/doc/cookbook/validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/doc/cookbook/validator.md -------------------------------------------------------------------------------- /Resources/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/doc/index.md -------------------------------------------------------------------------------- /Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/meta/LICENSE -------------------------------------------------------------------------------- /Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /Security/Authentication/LdapAuthenticationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Security/Authentication/LdapAuthenticationProvider.php -------------------------------------------------------------------------------- /Security/Factory/FormLoginLdapFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Security/Factory/FormLoginLdapFactory.php -------------------------------------------------------------------------------- /Security/Factory/HttpBasicLdapFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Security/Factory/HttpBasicLdapFactory.php -------------------------------------------------------------------------------- /Security/User/LdapUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Security/User/LdapUserProvider.php -------------------------------------------------------------------------------- /UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/UPGRADE-2.0.md -------------------------------------------------------------------------------- /UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/UPGRADE-3.0.md -------------------------------------------------------------------------------- /Validator/Unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Validator/Unique.php -------------------------------------------------------------------------------- /Validator/UniqueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/Validator/UniqueValidator.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks3w/FR3DLdapBundle/HEAD/composer.json --------------------------------------------------------------------------------