Bundle Installation
Installation
With Symfony Flex
composer require web-auth/webauthn-symfony-bundleWithout Symfony Flex
<?php
return [
//...
Webauthn\Bundle\WebauthnBundle::class => ['all' => true],
];<?php
declare(strict_types=1);
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
return function (RoutingConfigurator $routes) {
$routes->import('.', 'webauthn');
};Repositories
Firewall
Was this helpful?