Make work with any var dumper newer than 5.2#35
Make work with any var dumper newer than 5.2#35MekDrop merged 3 commits intoimponeer:mainfrom MekDrop:make-work-with-any-var-dumper-newer-than-5.2
Conversation
WalkthroughThe version constraint for the "symfony/var-dumper" dependency in the Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
composer.json (1)
6-6: Avoid using an arbitrary upper bound in the version constraint
The range<999.999.999is unconventional and can lead to confusion. Composer treats a missing upper bound as “no limit,” so you can simplify while achieving the same effect.Consider:
- "symfony/var-dumper": ">=5.2.0 <999.999.999", + "symfony/var-dumper": ">=5.2.0"This allows any future release ≥ 5.2.0 without the need for an artificial cap.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Cache: Disabled due to data retention organization setting
Knowledge Base: Disabled due to data retention organization setting
📒 Files selected for processing (1)
composer.json(1 hunks)
Summary by CodeRabbit