Skip to content
Merged
Changes from 1 commit
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 @@ -45,7 +45,7 @@
"google/protobuf": "^3.7 || ^4.0",
"spiral/roadrunner-worker": "^3.0",
"spiral/goridge": "^4.0",
"spiral/roadrunner": "^2024.3"
"spiral/roadrunner": "^2024.3 | ^2025.1"
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

Incorrect version constraint operator. Composer semver uses || for logical OR, not a single |, and it’s best to avoid spaces around it. Please update to:

"spiral/roadrunner": "^2024.3||^2025.1"

This will ensure Composer correctly parses and installs either 2024.3-series or 2025.1-series releases.

},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0",
Expand Down
Loading