Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"require-dev": {
"phpunit/phpunit": ">=11.5.5",
"orchestra/testbench": ">=9.5.1",
"ronasit/laravel-helpers": ">=3.5.8",
"ronasit/laravel-helpers": "^3.5.8 || @dev",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep the dev allowance within the helpers version range

Composer treats || as a logical OR and a bare @dev as a stability flag without enforcing a version constraint, so this side is effectively unconstrained rather than ^3.5.8 with dev stability. In contexts such as composer update --prefer-lowest or when another dependency rules out helpers 3.x, this can now resolve ronasit/laravel-helpers to an older 1.x/2.x stable/dev branch even though the previous lower bound required at least 3.5.8, which can break the test helpers imported from that package; attach the stability flag to the intended constraint instead of adding it as a separate OR branch.

Useful? React with 👍 / 👎.

"laravel/pint": "^1.25"
},
"autoload": {
Expand Down
Loading