Skip to content

Commit

Permalink
remove support for laravel 9 and php < 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopolani committed Mar 10, 2024
1 parent 476c702 commit 0202fb5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 19 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.3, 8.2, 8.1, 8.0]
laravel: ["^11.0", "^10.0", "^9.0"]
php: [8.3, 8.2]
laravel: ["^11.0", "^10.0"]
include:
- laravel: "^11.0"
testbench: 9.*
- laravel: "^10.0"
testbench: 8.*
- laravel: "^9.0"
testbench: 7.*
exclude:
- laravel: "^11.0"
php: 8.1
- laravel: "^11.0"
php: 8.0
- laravel: "^10.0"
php: 8.0
- laravel: "^8.12"
php: 8.3

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"require": {
"php": "^8.2",
"firebase/php-jwt": "^6.4",
"illuminate/auth": "^9.0|^10.0|^11.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0"
"illuminate/auth": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0"
},
"autoload": {
Expand Down
8 changes: 8 additions & 0 deletions src/FusionAuthJwtUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,12 @@ public function validateCredentials(Authenticatable $user, array $credentials)
{
return false;
}

/**
* {@inheritDoc}
*/
public function rehashPasswordIfRequired(Authenticatable $user, array $credentials, bool $force = false)
{
return;
}
}

0 comments on commit 0202fb5

Please sign in to comment.