Skip to content

Commit 30d151d

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents d463f4e + c0a38d2 commit 30d151d

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ Please review [my security policy](.github/SECURITY.md) on how to report securit
6161

6262
This package is heavily inspired from Larapass and asbiin/laravel-webauthn.
6363

64-
- [Randall Wilk](https://github.com/rawilk)
65-
- [All Contributors](../../contributors)
64+
- [Randall Wilk](https://github.com/rawilk)
65+
- [All Contributors](../../contributors)
6666

6767
Since the `v1.0.1` patch, a considerable amount of the JavaScript portion of this package has been sourced from the [SimpleWebAuthn](https://github.com/MasterKale/SimpleWebAuthn) package made by [Matthew Miller](https://github.com/MasterKale). His copyright has been added to the license file, and copyright notices have been placed in JS files where the code is extremely close to what his is.
6868

6969
## Alternatives
7070

7171
This package aims to provide only the bare necessities required to utilize WebAuthn in your application, which provides the freedom to incorporate it into your project based on your own needs and desires. If you're looking for a more complete solution, consider one of these alternatives:
7272

73-
- [Laragear Webauthn](https://github.com/Laragear/WebAuthn)
74-
- [asbiin/laravel-webauthn](https://github.com/asbiin/laravel-webauthn)
73+
- [Laragear Webauthn](https://github.com/Laragear/WebAuthn)
74+
- [asbiin/laravel-webauthn](https://github.com/asbiin/laravel-webauthn)
7575

7676
## Disclaimer
7777

docs/advanced-usage/advanced-configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ The configuration provided out-of-the-box should be enough for most use cases, h
1111

1212
The _Relying Party_ is just a way to uniquely identify your application in the user device:
1313

14-
- `name`: The name of the application. Defaults to the application name.
15-
- `id`: Optional domain of the application. If null, the device will fill it internally.
16-
- `icon`: Optional image data in base64 (128 bytes maximum) or an image url.
14+
- `name`: The name of the application. Defaults to the application name.
15+
- `id`: Optional domain of the application. If null, the device will fill it internally.
16+
- `icon`: Optional image data in base64 (128 bytes maximum) or an image url.
1717

1818
> {tip} Consider using the base domain like `myapp.com` as the `id` to allow the credentials on subdomains like `acme.myapp.com`.
1919

docs/advanced-usage/events.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ When a new `Webauthn` key is created for a user, we will dispatch this event. It
1313

1414
Params:
1515

16-
- `\Rawilk\Webauthn\Contracts\WebauthnKey $webauthnKey`
16+
- `\Rawilk\Webauthn\Contracts\WebauthnKey $webauthnKey`
1717

1818
The following events are dispatched by this package:
1919

@@ -23,31 +23,31 @@ We dispatch this when a WebauthnKey is used to verify a user's identity during t
2323

2424
Params:
2525

26-
- `\Rawilk\Webauthn\Contracts\WebauthnKey $webauthnKey`
26+
- `\Rawilk\Webauthn\Contracts\WebauthnKey $webauthnKey`
2727

2828
## WebauthnLoginDataGenerated
2929

3030
This is dispatched when we generate an assertion (public key) for a given user to be used by our JavaScript.
3131

3232
Params:
3333

34-
- `\Illuminate\Contracts\Auth\Authenticable $user`
35-
- `\Webauthn\PublicKeyCredentialRequestOptions $publicKey`
34+
- `\Illuminate\Contracts\Auth\Authenticable $user`
35+
- `\Webauthn\PublicKeyCredentialRequestOptions $publicKey`
3636

3737
## WebauthnRegisterData
3838

3939
This is dispatched when we generate an attestation (public key) for a given user to be used by our JavaScript.
4040

4141
Params:
4242

43-
- `\Illuminate\Contracts\Auth\Authenticable $user`
44-
- `\Webauthn\PublicKeyCredentialCreationOptions $publicKey`
43+
- `\Illuminate\Contracts\Auth\Authenticable $user`
44+
- `\Webauthn\PublicKeyCredentialCreationOptions $publicKey`
4545

4646
## WebauthnRegistrationFailed
4747

4848
We dispatch this when a WebauthnKey fails to be generated for a given user.
4949

5050
Params:
5151

52-
- `\Illuminate\Contracts\Auth\Authenticable $user`
53-
- `\Exception $exception`
52+
- `\Illuminate\Contracts\Auth\Authenticable $user`
53+
- `\Exception $exception`

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ See the default configuration values [here](https://github.com/rawilk/laravel-we
2727

2828
No custom configuration is required out-of-the-box, however some common configurations you may want to change include:
2929

30-
- `user_verification`: Basically determines if the user needs to enter a PIN for their security key. Set to `discouraged` to not require that.
31-
- `attachment_mode`: Determines which type of authenticator the user may use. Use `platform` for internal (biometric), and `cross-platform` for roaming (security) keys.
30+
- `user_verification`: Basically determines if the user needs to enter a PIN for their security key. Set to `discouraged` to not require that.
31+
- `attachment_mode`: Determines which type of authenticator the user may use. Use `platform` for internal (biometric), and `cross-platform` for roaming (security) keys.
3232

3333
## Migrations
3434

docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Since the `v1.0.1` patch, a considerable amount of the JavaScript portion of thi
1414

1515
## Alternatives
1616

17-
- [Larapass](https://github.com/DarkGhostHunter/Larapass)
18-
- [asbiin/laravel-webauthn](https://github.com/asbiin/laravel-webauthn)
17+
- [Larapass](https://github.com/DarkGhostHunter/Larapass)
18+
- [asbiin/laravel-webauthn](https://github.com/asbiin/laravel-webauthn)
1919

2020
## Disclaimer
2121

docs/requirements.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ sort: 2
55

66
## General Requirements
77

8-
- PHP **8.1** or greater
9-
- Laravel **9.12** or greater
8+
- PHP **8.1** or greater
9+
- Laravel **9.12** or greater
1010

1111
## Browser Requirements
1212

1313
Most modern browsers support both platform and cross-platform WebAuthn. You can check which browsers support at [caniuse](https://caniuse.com/webauthn). In addition,
1414
your application must meet these requirements:
1515

16-
- A proper domain name (localhost and 127.0.0.1 are rejected by our `webauthn.js` script)
17-
- Site must run on an SSL/TLS certificate (self-signed is okay)
16+
- A proper domain name (localhost and 127.0.0.1 are rejected by our `webauthn.js` script)
17+
- Site must run on an SSL/TLS certificate (self-signed is okay)
1818

1919
## Version Matrix
2020

0 commit comments

Comments
 (0)