-
-
Notifications
You must be signed in to change notification settings - Fork 26
Add Laravel 13 and PHP 8.4 support #84
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
Changes from all commits
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 |
|---|---|---|
|
|
@@ -16,16 +16,16 @@ | |
| } | ||
| ], | ||
| "require": { | ||
| "php": "^8.1 | ^8.2 | ^8.3", | ||
| "illuminate/contracts": "^10.0 | ^11.0 | ^12.0", | ||
| "php": "^8.1 | ^8.2 | ^8.3 | ^8.4", | ||
| "illuminate/contracts": "^10.0 | ^11.0 | ^12.0 | ^13.0", | ||
| "spatie/laravel-package-tools": "^1.16.0" | ||
| }, | ||
| "require-dev": { | ||
| "laravel/pint": "^1.0", | ||
| "mockery/mockery": "^1.6", | ||
| "nunomaduro/collision": "^7.8 | ^8.1", | ||
| "orchestra/workbench": "^8.0 | ^9.0 | ^10.0", | ||
| "phpunit/phpunit": "^10.5 | ^11.0", | ||
| "nunomaduro/collision": "^7.8 | ^8.1 | ^9.0", | ||
| "orchestra/workbench": "^8.0 | ^9.0 | ^10.0 | ^11.0", | ||
| "phpunit/phpunit": "^10.5 | ^11.0 | ^12.0", | ||
|
Contributor
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. Upgrading to PHPUnit 12 requires updating the |
||
| "rector/rector": "^2.1.7" | ||
| }, | ||
| "autoload": { | ||
|
|
||
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.
The PHP version constraint is redundant. The caret operator (
^8.1) already covers all minor versions within the 8.x range, including 8.2, 8.3, and 8.4. Explicitly listing each minor version increases maintenance overhead without providing additional functional constraints.