@@ -33,7 +33,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
3333
34341 . Install the composer package:
3535 ``` sh
36- composer require genealabs /laravel-sign-in-with-apple
36+ composer require mikebronner /laravel-sign-in-with-apple
3737 ```
3838
3939 We also recommend using [geneaLabs/laravel-socialiter](https://github.com/GeneaLabs/laravel-socialiter)
@@ -66,7 +66,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
6666 upload it to https://example.com/.well-known/apple-developer-domain-association.txt, and then click the " Verify"
6767 button.
68683. Create a ` Private Key` for your website (https://developer.apple.com/account/resources/authkeys/list) with the following details:
69- - Key Name:
69+ - Key Name:
7070 - Check " Sign In With Apple"
7171 - Configure " Sign In With Apple" :
7272 - Primary App ID: (select the primary app id created in step 1)
@@ -80,7 +80,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
8080 ```sh
8181 sudo gem install jwt
8282 ```
83-
83+
8484 - Create a file called `client_secret.rb` to process the private key:
8585 ```ruby
8686 require ' jwt'
@@ -122,7 +122,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
122122 ```sh
123123 ruby client_secret.rb
124124 ```
125-
125+
1261265. Set the necessary environment variables in your `.env` file:
127127
128128 ```env
@@ -184,7 +184,7 @@ class AppleSigninController extends Controller
184184 // get abstract user object, not persisted
185185 $user = Socialite::driver("sign-in-with-apple")
186186 ->user();
187-
187+
188188 // or use Socialiter to automatically manage user resolution and persistence
189189 $user = Socialiter::driver("sign-in-with-apple")
190190 ->login();
0 commit comments