Skip to content

Commit 5e7a6e1

Browse files
committed
Updated namespace.
1 parent 15afe90 commit 5e7a6e1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
3333

3434
1. 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.
6868
3. 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+
126126
5. 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();

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "genealabs/laravel-sign-in-with-apple",
2+
"name": "mikebronner/laravel-sign-in-with-apple",
33
"description": "Add Apple's new single-signon feature to your site with ease.",
44
"type": "library",
55
"license": "MIT",

0 commit comments

Comments
 (0)