Skip to content

Commit

Permalink
feat: Support for laravel 11 (#220)
Browse files Browse the repository at this point in the history
* feat: update dependencies + update UserProvider to match abstract class

* style: formatting
  • Loading branch information
64knl authored Mar 15, 2024
1 parent 0b1d07d commit 0c2290d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"require": {
"spatie/laravel-package-tools": "^1.14.0",
"spatie/laravel-honeypot": "^4.3.2",
"illuminate/contracts": "^10.0",
"notfoundnl/siteboss-layout": "^1.6",
"illuminate/contracts": "^10.0|^11.0",
"notfoundnl/siteboss-layout": "^1.6.1",
"notfoundnl/siteboss-static": "^1.13",
"mcamara/laravel-localization": "^1.8",
"mcamara/laravel-localization": "^2.0",
"xenolope/quahog": "^3.0",
"firebase/php-jwt": "^6.3",
"intervention/image": "^3.0",
Expand Down
10 changes: 10 additions & 0 deletions src/Providers/Auth/OpenIDUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,14 @@ public function validateCredentials(Authenticatable $user, array $credentials)
{
throw new NotImplementedException();
}

/**
* Validate a user against the given credentials.
*
* @return void
*/
public function rehashPasswordIfRequired(Authenticatable $user, array $credentials, bool $force = false)
{
throw new NotImplementedException();
}
}

0 comments on commit 0c2290d

Please sign in to comment.