Skip to content

Commit

Permalink
upgrade to laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopolani committed Feb 21, 2022
1 parent 7f6a10b commit d45077c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to `laravel-fusionauth-jwt` will be documented in this file

## 2.0.0 - 2022-02-21

**Changed**
- Upgrade to Laravel 9
- Dropped support for PHP 7.4
- PHP 8.0.2 is the minimum requirement

## 1.0.0 - 2021-07-30

- First release
19 changes: 11 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.0.2",
"firebase/php-jwt": "^5.4",
"illuminate/auth": "^8.0",
"illuminate/http": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/routing": "^8.0",
"illuminate/support": "^8.0"
"illuminate/auth": "^9.0",
"illuminate/http": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/routing": "^9.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.12"
},
"autoload": {
Expand All @@ -42,7 +42,10 @@
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit d45077c

Please sign in to comment.