-
-
Notifications
You must be signed in to change notification settings - Fork 18
Support laravel 13 #23
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?
Changes from all 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 |
|---|---|---|
|
|
@@ -11,14 +11,14 @@ | |
| ], | ||
| "require": { | ||
| "php": "^8.2", | ||
| "illuminate/support": "^10.0|^11.0|^12.0", | ||
| "illuminate/filesystem": "^10.0|^11.0|^12.0", | ||
| "illuminate/console": "^10.0|^11.0|^12.0" | ||
| "illuminate/support": "^10.0|^11.0|^12.0|^13.0", | ||
| "illuminate/filesystem": "^10.0|^11.0|^12.0|^13.0", | ||
| "illuminate/console": "^10.0|^11.0|^12.0|^13.0" | ||
| }, | ||
| "require-dev": { | ||
| "laravel/pint": "^1.0", | ||
| "mockery/mockery": "^1.6", | ||
| "orchestra/testbench": "^8.21|^9.2|^10.0", | ||
| "orchestra/testbench": "^8.21|^9.2|^10.0|^11.0", | ||
|
Contributor
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. 🧩 Analysis chain🌐 Web query:
💡 Result: orchestra/testbench 11.x supports PHPUnit ^11.5.50, ^12.5.8, or ^13.0.0 and targets Laravel Framework ^13.0.0. Citations:
🏁 Script executed: # Search for the PHPUnit constraint in composer.json
rg "phpunit" composer.json -A 1 -B 1Repository: aarondfrancis/airdrop Length of output: 169 Testbench 11.0 requires PHPUnit ^11.5.50, not ^11.0. The constraint 🤖 Prompt for AI Agents |
||
| "phpunit/phpunit": "^10.5|^11.0" | ||
| }, | ||
| "autoload": { | ||
|
|
||
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.
🧩 Analysis chain
🌐 Web query:
What is the official minimum PHP version required by Laravel 13.x (illuminate/support 13.x)?💡 Result:
The official minimum PHP version required by Laravel 13.x (illuminate/support 13.x) is PHP 8.3.
Citations:
Update PHP constraint to support Laravel 13 requirement.
The package permits Laravel 13 (
illuminate/*: ^13.0) but requires only PHP^8.2. Laravel 13 requires PHP 8.3 as a minimum, creating an unresolvable conflict—installs targeting Laravel 13 on PHP 8.2 will fail. Change Line 13 to"php": "^8.3".🤖 Prompt for AI Agents