You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently updated a few php modules. Inside the composer.json the name changed from "oldvendor/my-module" to "newvendor/someprefix-my-module". This change is committed into a different branch "better-version", not master.
Running php bin/satis build repo.json public/ recognises both my branches, but puts out two files named public/dist/oldvendor/my-module-dev-master-4aee4c.zip and public/dist/oldvendor/my-module-dev-better-version-5a555c.zip.
So in my composer.json requiring the module from better-version does only work with its old name:
works: "oldvendor/my-module": "dev-better-version"
doesnt: "newvendor/someprefix-my-module": "dev-better-version"
When I delete master, satis seems to recognise "better-version" as the new main branch and the file is output correctly to public/dist/newvendor/someprefix-my-module-dev-better-version-5a555c.zip
What am I missing here? Can this be solved without having two separate repositories?
(Changing the name might be bad practice ...but since these are private modules I dont want to spak that discussion)
I recently updated a few php modules. Inside the composer.json the name changed from "oldvendor/my-module" to "newvendor/someprefix-my-module". This change is committed into a different branch "better-version", not master.
This is what my repo.json looks like:
Running
php bin/satis build repo.json public/
recognises both my branches, but puts out two files namedpublic/dist/oldvendor/my-module-dev-master-4aee4c.zip
andpublic/dist/oldvendor/my-module-dev-better-version-5a555c.zip
.So in my composer.json requiring the module from better-version does only work with its old name:
works:
"oldvendor/my-module": "dev-better-version"
doesnt:
"newvendor/someprefix-my-module": "dev-better-version"
When I delete master, satis seems to recognise "better-version" as the new main branch and the file is output correctly to
public/dist/newvendor/someprefix-my-module-dev-better-version-5a555c.zip
What am I missing here? Can this be solved without having two separate repositories?
(Changing the name might be bad practice ...but since these are private modules I dont want to spak that discussion)
Edit: It somehow works by using
However reference does not track changes in the branch. The composer doc warns about this. So this is not a valid solution :(
The text was updated successfully, but these errors were encountered: