-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps)!: upgrade to utopia-php/domains 3.x #22
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
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 |
|---|---|---|
|
|
@@ -25,9 +25,9 @@ | |
| "import:stats": "php import.php stats" | ||
|
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.
The package now requires PHP 8.4, but the test matrix still runs PHP 8.1, 8.2, 8.3, and nightly while bypassing platform checks with Prompt To Fix With AIThis is a comment left during a code review.
Path: composer.json
Line: 25
Comment:
**CI targets unsupported PHP versions**
The package now requires PHP 8.4, but the test matrix still runs PHP 8.1, 8.2, 8.3, and nightly while bypassing platform checks with `--ignore-platform-reqs`. This spends most test coverage on unsupported runtimes and does not explicitly validate the newly supported minimum, so the matrix should be aligned with PHP 8.4.
---
For each issue above, determine whether it is valid and should be fixed. If so, fix it directly. |
||
| }, | ||
| "require": { | ||
| "php": ">=8.0", | ||
| "php": ">=8.4", | ||
| "utopia-php/validators": "0.*", | ||
| "utopia-php/domains": "^2.0" | ||
| "utopia-php/domains": "^3.0" | ||
| }, | ||
| "require-dev": { | ||
| "laravel/pint": "1.25.*", | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
The package now requires PHP 8.4, while README.md and CONTRIBUTING.md still advertise PHP 8.0 or later. Users following those requirements on PHP 8.0–8.3 receive a Composer platform conflict, so the installation and contributor documentation should be updated with this requirement bump.
Prompt To Fix With AI