phpmentors / composite-password-authentication-bundle
A Symfony bundle for authentication using composite password
Installs: 2 019
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 2
Open Issues: 2
Type:symfony-bundle
Requires
- php: >=5.5.9
- symfony/config: ~2.8|~3.0
- symfony/dependency-injection: ~2.8|~3.0
- symfony/http-kernel: ~2.8|~3.0
- symfony/security-bundle: ~2.8|~3.0
- symfony/security-core: ~2.8|~3.0
This package is auto-updated.
Last update: 2024-10-29 04:47:27 UTC
README
A Symfony bundle for authentication using composite password
Features
- Composite password support for form authentication
Installation
PHPMentorsCompositePasswordAuthenticationBundle
can be installed using Composer.
First, add the dependency to phpmentors/composite-password-authentication-bundle
into your composer.json
file as the following:
Stable version:
composer require phpmentors/composite-password-authentication-bundle "1.0.*"
Development version:
composer require phpmentors/composite-password-authentication-bundle "~1.1@dev"
Second, add PHPMentorsCompositePasswordAuthenticationBundle
into your bundles to register in AppKernel::registerBundles()
as the following:
... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new PHPMentors\CompositePasswordAuthenticationBundle\PHPMentorsCompositePasswordAuthenticationBundle(), ); ...
Configuration
app/config/security.yml:
security: # ... firewalls: secured_area: form_login_composite_password: ... # Same configuration as `form_login`
Support
If you find a bug or have a question, or want to request a feature, create an issue or pull request for it on Issues.
Copyright
Copyright (c) 2016 KUBO Atsuhiro, All rights reserved.