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 @@ -18,7 +18,7 @@
"require": {
"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"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 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:


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.

},
"require-dev": {
"orchestra/testbench": "^10.0",
Expand Down