crayner / authenticate-bundle
Authenticate Bundle for Symfony 4+
Installs: 44
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- paragonie/sodium_compat: ^1.9
- symfony/console: ^3.4 || ^4.0
- symfony/dotenv: ^3.4 || ^4.0
- symfony/flex: ^1.2
- symfony/form: ^3.4 || ^4.0
- symfony/framework-bundle: ^3.4 || ^4.0
- symfony/monolog-bundle: ^3.3
- symfony/orm-pack: ^1.0
- symfony/security-bundle: ^3.4 || ^4.0
- symfony/swiftmailer-bundle: ^3.2
- symfony/twig-bundle: ^3.4 || ^4.0
- symfony/validator: ^3.4 || ^4.0
- symfony/yaml: ^3.4 || ^4.0
Requires (Dev)
- symfony/browser-kit: ^3.4 || ^4.0
- symfony/debug-pack: ^1.0
- symfony/phpunit-bridge: ^3.4 || ^4.0
README
Symfony 4+ Authenticate Bundle Project
Version 1.1.4
Features
I began this as a simple set of stuff that I was using in projects without the weight of FOSUserBUndle. It now provides a series of Encoders that allow NON Sodium use of Argon2* in Symfony 4.3+. In Version 4.3 Symfony has taken the route of not using the PHP Native encoders. I personally don't have an opinion, not understanding why this decision was taken, but the HighestPasswordEncoder within this package supplies the options to enable PHP Native encoders for Argon2* if Sodium is not available. Sodium should be available, as package requires paragonie/sodium_compat as a fall back for libsodium In any case, removal of paragonie/sodium_compat and libsodium will still allow Argon2* integration for PHP 7.2+. The Argon2*PasswordEncoders supplied in this package only supply PHP Native Argon integration, and can be used in your project as any normal encoder.
Installation
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require crayner/authenticate-bundle
Applications that don't use Symfony Flex
- Step 1: Download the Bundle
Enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require crayner/authenticate-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
- Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles in the config/Bundles.php file of your project:
<?php return [ //... // Crayner\Authenticate\CraynerAuthenticateBundle::class => ['all' => true], ];
Usage
-
Highest Available Encoder Class directly in the Security settings of your App.
Craig Rayner