Update illuminate/support requirement to include 13.0#13
Update illuminate/support requirement to include 13.0#13trippo wants to merge 1 commit intoBlaspsoft:mainfrom
Conversation
📝 WalkthroughWalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@composer.json`:
- Line 21: The composer.json declares support for Laravel 13 via
"illuminate/support": "^...|^13.0" but the dev/test dependency
"orchestra/testbench" is still pinned to ^10.0; update the "orchestra/testbench"
requirement to ^11.0 (or ^11.0||^12.0 if you want future compatibility) so tests
run against Laravel 13—locate the "orchestra/testbench" entry in composer.json
and change its version constraint accordingly, then run composer update to
refresh lockfile and ensure testbench is compatible with the
"illuminate/support" ^13.0 entry.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| "php": "^8.2", | ||
| "blaspsoft/onym": "^1.0", | ||
| "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0" | ||
| "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0" |
There was a problem hiding this comment.
🧩 Analysis chain
🌐 Web query:
What versions of orchestra/testbench support Laravel 13 (illuminate/support ^13.0)? Please cite the official package docs/changelog or Packagist constraints.
💡 Result:
orchestra/testbench versions ^11.0 support Laravel 13 (illuminate/support ^13.0). Versions ^10.0 and below support up to Laravel 12.
Citations:
- 1: https://github.com/orchestral/testbench
- 2: https://packages.tools/testbench
- 3: https://github.com/orchestral/testbench/releases
- 4: https://packagist.org/packages/orchestra/testbench
- 5: https://github.com/orchestral/testbench-core
- 6: orchestral/testbench-core@ed85492
- 7: https://github.com/orchestral/testbench/tags
- 8: https://packagist.org/packages/orchestra/testbench-core
Update orchestra/testbench to ^11.0 for Laravel 13 support
Line 21 expands runtime support to Laravel 13, but orchestra/testbench on Line 24 remains at ^10.0, which only supports up to Laravel 12. Update it to at least ^11.0 to enable proper testing of Laravel 13 compatibility.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@composer.json` at line 21, The composer.json declares support for Laravel 13
via "illuminate/support": "^...|^13.0" but the dev/test dependency
"orchestra/testbench" is still pinned to ^10.0; update the "orchestra/testbench"
requirement to ^11.0 (or ^11.0||^12.0 if you want future compatibility) so tests
run against Laravel 13—locate the "orchestra/testbench" entry in composer.json
and change its version constraint accordingly, then run composer update to
refresh lockfile and ensure testbench is compatible with the
"illuminate/support" ^13.0 entry.
Summary by CodeRabbit