-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop support for Laravel < 10 #238
Changes from all commits
086c6d6
080fd7a
dca627f
ee1b6ad
6908160
0abe37b
a81224f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,26 +33,24 @@ | |
} | ||
], | ||
"require": { | ||
"php": "^7.4|^8.0", | ||
"php": "^8.1", | ||
"ext-json": "*", | ||
"illuminate/auth": "^6|^7|^8.67|^9|^10|^11", | ||
"illuminate/contracts": "^6|^7|^8.67|^9|^10|^11", | ||
"illuminate/http": "^6|^7|^8.67|^9|^10|^11", | ||
"illuminate/support": "^6|^7|^8.67|^9|^10|^11", | ||
"illuminate/auth": "^10|^11", | ||
"illuminate/contracts": "^10|^11", | ||
"illuminate/http": "^10|^11", | ||
"illuminate/support": "^10|^11", | ||
"lcobucci/jwt": "^4.0", | ||
"namshi/jose": "^7.0", | ||
"nesbot/carbon": "^2.0|^3.0" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^3", | ||
"illuminate/console": "^6|^7|^8.67|^9|^10|^11", | ||
"illuminate/routing": "^6|^7|^8.67|^9|^10|^11", | ||
"orchestra/testbench": "^4.18|^5.8|^6.3|^7|^8|^9|9.x-dev", | ||
"illuminate/console": "^10|^11", | ||
"illuminate/routing": "^10|^11", | ||
"orchestra/testbench": "^8|^9", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed |
||
"mockery/mockery": "^1.4.4", | ||
"phpstan/phpstan": "^1", | ||
"phpunit/phpunit": "^8.5|^9.4|^10", | ||
"vlucas/phpdotenv": "^5.2.0", | ||
"yoast/phpunit-polyfills": "^2.0.0" | ||
Comment on lines
-54
to
-55
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Turns out these two dev deps were not needed anymore 🤷🏼 |
||
"phpunit/phpunit": "^9.4|^10" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,11 @@ parameters: | |
count: 1 | ||
path: tests/Stubs/LaravelUserStub.php | ||
|
||
- | ||
message: "#^Method PHPOpenSourceSaver\\\\JWTAuth\\\\Test\\\\Stubs\\\\LaravelUserStub\\:\\:getAuthPasswordName\\(\\) should return string but return statement is missing\\.$#" | ||
count: 1 | ||
path: tests/Stubs/LaravelUserStub.php | ||
Comment on lines
+73
to
+76
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. phpstan with latest PHP 8.3 produced this; as with all errors from |
||
|
||
- | ||
message: "#^Method PHPOpenSourceSaver\\\\JWTAuth\\\\Test\\\\Stubs\\\\LaravelUserStub\\:\\:getRememberToken\\(\\) should return string but return statement is missing\\.$#" | ||
count: 1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is really a lot of stuff not necessary anymore!