-
Notifications
You must be signed in to change notification settings - Fork 24
Laravel 13 #60
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
base: main
Are you sure you want to change the base?
Laravel 13 #60
Changes from 4 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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -19,18 +19,18 @@ | |||||
| "require": { | ||||||
| "php": "^8.2", | ||||||
| "fluent/logger": "^1.0", | ||||||
| "illuminate/log": "^11.0 | ^12.0", | ||||||
| "illuminate/support": "^11.0 | ^12.0", | ||||||
| "illuminate/config": "^11.0 | ^12.0", | ||||||
| "illuminate/contracts": "^11.0 | ^12.0", | ||||||
| "illuminate/container": "^11.0 | ^12.0", | ||||||
| "illuminate/events": "^11.0 | ^12.0", | ||||||
| "illuminate/log": "^11.0 | ^12.0 | ^13.0", | ||||||
| "illuminate/support": "^11.0 | ^12.0 | ^13.0", | ||||||
| "illuminate/config": "^11.0 | ^12.0 | ^13.0", | ||||||
| "illuminate/contracts": "^11.0 | ^12.0 | ^13.0", | ||||||
| "illuminate/container": "^11.0 | ^12.0 | ^13.0", | ||||||
| "illuminate/events": "^11.0 | ^12.0 | ^13.0", | ||||||
| "monolog/monolog": "^3.0" | ||||||
| }, | ||||||
| "require-dev": { | ||||||
| "phpunit/phpunit": "^10.0", | ||||||
| "phpunit/phpunit": ">=10.0", | ||||||
|
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. Using an unbounded upper constraint like
Suggested change
|
||||||
| "php-coveralls/php-coveralls": "^2.4", | ||||||
| "illuminate/filesystem": "^11.0 | ^12.0", | ||||||
| "orchestra/testbench": "^9.0 | ^10.0 | ^11.0", | ||||||
| "phpstan/phpstan": "^1.10", | ||||||
| "slevomat/coding-standard": "^6.4", | ||||||
| "squizlabs/php_codesniffer": "^3.5", | ||||||
|
|
||||||
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 an inconsistency between the
composer.jsonrequirements and theREADME.mdversioning table. TheREADME.mdindicates that version^8of this library is intended for Laravel>= v12, while Laravelv11should stay on version^7. However,composer.jsonstill includes^11.0in the requirements forilluminatepackages. To maintain consistency and prevent Laravel 11 users from accidentally upgrading to version 8 (which may contain environment requirements or testing changes intended for newer Laravel versions), consider removing the^11.0constraint.