2022-11-03 10:44:05 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
2023-07-21 10:35:15 -04:00
|
|
|
$containerConfigurator->extension('framework', ['validation' => ['not_compromised_password' => FALSE]]);
|
2022-11-03 10:44:05 -04:00
|
|
|
};
|