Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phpmentors-jp/composite-password-authentication-bundle
A Symfony bundle for authentication using composite password
https://github.com/phpmentors-jp/composite-password-authentication-bundle
Last synced: 2 months ago
JSON representation
A Symfony bundle for authentication using composite password
- Host: GitHub
- URL: https://github.com/phpmentors-jp/composite-password-authentication-bundle
- Owner: phpmentors-jp
- License: bsd-2-clause
- Created: 2016-05-09T07:02:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-07-19T02:40:06.000Z (over 2 years ago)
- Last Synced: 2024-11-05T08:38:50.550Z (2 months ago)
- Language: PHP
- Size: 9.77 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHPMentorsCompositePasswordAuthenticationBundle
A Symfony bundle for authentication using composite password
[![Total Downloads](https://poser.pugx.org/phpmentors/composite-password-authentication-bundle/downloads)](https://packagist.org/packages/phpmentors/composite-password-authentication-bundle)
[![Latest Stable Version](https://poser.pugx.org/phpmentors/composite-password-authentication-bundle/v/stable)](https://packagist.org/packages/phpmentors/composite-password-authentication-bundle)
[![Latest Unstable Version](https://poser.pugx.org/phpmentors/composite-password-authentication-bundle/v/unstable)](https://packagist.org/packages/phpmentors/composite-password-authentication-bundle)## Features
* Composite password support for form authentication
## Installation
`PHPMentorsCompositePasswordAuthenticationBundle` can be installed using [Composer](http://getcomposer.org/).
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:
```php
...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new PHPMentors\CompositePasswordAuthenticationBundle\PHPMentorsCompositePasswordAuthenticationBundle(),
);
...
```## Configuration
`app/config/security.yml:`
```yaml
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](https://github.com/phpmentors-jp/composite-password-authentication-bundle/issues).
## Copyright
Copyright (c) 2016 KUBO Atsuhiro, All rights reserved.
## License
[The BSD 2-Clause License](http://opensource.org/licenses/BSD-2-Clause)