Skip to content

Commit c606fb0

Browse files
committed
Add dependabot configuration
1 parent 5467094 commit c606fb0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

config/webauthn.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
return [
4+
'relying_party_id' => env('PL_WEBAUTHN_RELYING_PARTY_ID', 'localhost'),
5+
'relying_party_name' => env('PL_WEBAUTHN_RELYING_PARTY_NAME', 'Platine App'),
6+
'relying_party_logo' => '', // base64 image format
7+
'timeout' => env('PL_WEBAUTHN_TIMEOUT', 60, 'int'), // in second
8+
'challenge_length' => env('PL_WEBAUTHN_CHALLENGE_LENGTH', 32, 'int'), // in second
9+
'transport_types' => [
10+
'internal',
11+
],
12+
'ignore_origins' => [
13+
'localhost'
14+
],
15+
];

0 commit comments

Comments
 (0)