-
Notifications
You must be signed in to change notification settings - Fork 3
feat: amqp swoole #47
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
Open
loks0n
wants to merge
1
commit into
main
Choose a base branch
from
feat-amqp-swoole
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"type": "library", | ||
"keywords": ["php","framework", "upf", "utopia", "tasks", "queue"], | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"minimum-stability": "dev", | ||
"authors": [ | ||
{ | ||
"name": "Torsten Dittmann", | ||
|
@@ -23,9 +23,15 @@ | |
"format": "vendor/bin/pint", | ||
"lint": "vendor/bin/pint --test" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:appwrite-labs/php-amqplib.git" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.3", | ||
"php-amqplib/php-amqplib": "^3.7", | ||
"appwrite-labs/php-amqplib": "master-dev", | ||
"utopia-php/cli": "0.15.*", | ||
"utopia-php/framework": "0.33.*", | ||
"utopia-php/telemetry": "0.1.*", | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
💡 Verification agent
🧩 Analysis chain
Unpinned “master-dev” constraint is brittle
"appwrite-labs/php-amqplib": "master-dev"
points to a moving target. Any force-push on that branch can silently break downstream builds.Pin to a tag or specific commit and optionally allow caret/tilde ranges for controlled updates:
Follow-up: If no stable tag exists yet, consider adding
"minimum-stability": "dev"
with an explicit"prefer-stable": true
to keep Composer satisfied.🏁 Script executed:
Length of output: 424
Pin unstable dependency instead of tracking master-dev
Your composer.json is pulling a moving target for the AMQP library:
This can lead to silent breakages whenever that branch is force-pushed. Pin to a released version or exact commit:
You already have
so the
-dev
suffix on your requirement will still install the branch. No change to stability settings is required unless you intend to broadly allow dev-level packages—in which case add:🤖 Prompt for AI Agents