Adds composer.json extra.branch-alias of "dev-master" from "4.4.x-dev" - #1247
Merged
Conversation
…v” to “dev-master”.
extensions can require “pradosoft/prado”: “^4.4” without “||dev-master”, symlinks, or other custom solutions. Here is the template for PRADO extensions:
```json
{
"require-dev": { "pradosoft/prado": "^4.4" },
"minimum-stability": "dev",
"prefer-stable": true
}
```
When PRADO v4.4.0 is tagged, minimum-stability can be removed and prefer-stable is optional at that point.
@agentS This needs to be updated with every major and minor release, eg it becomes “v4.5.x-dev” between the last tagged v4.4.x version and v4.5.0 to move “dev-master” to the new branch.
belisoful
marked this pull request as ready for review
August 27, 2026 00:42
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The branch alias "4.4.x-dev" allows plugins to require
"pradosoft/prado": "^4.4"rather than the union of"^4.4 || dev-master"{ "require-dev": { "pradosoft/prado": "^4.4" }, "minimum-stability": "dev", "prefer-stable": true }minimum-stabilitystill needs to be dev when the minor version is not yet released. It can be removed after.prefer-stableastruewill relink prado when v4.4.0 is tagged. It can stay regardless ofminimum-stability.For the full write up, see issue #1242.