-
-
Notifications
You must be signed in to change notification settings - Fork 60
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
Issue updating to v10 with composer #745
Comments
The caliper-php repo went private. So I've switched the source to an archive. Found out that you can merge in extension composer.json instead of duplicating it in composer.local.json, so I changed it to pull in the caliper-php lib via the caliper extension's composer.json. I tried merging in all extension composer.json, but it didn't work, there was a conflict with the mediawiki/maps package, open issue here: ProfessionalWiki/Maps#745 If it weren't for that, we could use the mediawiki suggested: { "extra": { "merge-plugin": { "include": [ "extensions/*/composer.json", "skins/*/composer.json" ] } } } Which pulls in all extension/skin dependencies automatically.
Currently facing the same issue with a MediaWiki 1.41 installation.
|
Don't do this: |
If I don't include this line in my I don't understand how to reconcile this. If I don't include this line, the maps extension installs properly, but many other extensions are now broken due to missing their dependencies. If I include this line, the maps extension refuses to install. Please advise. |
The |
I ran into the same issue described here by a reddit user: https://old.reddit.com/r/mediawiki/comments/1170jrz/maps_100_will_not_install_what_to_do/
With the following composer.local.json:
I got the following error after running
composer update --no-dev
:I was able to resolve the issue by temporarily removing
composer.local.json
, runningcomposer update --no-dev
and then restoringcomposer.local.json
and updating a second time, but I don't understand what caused the problem in the first place.The
mediawiki/core
package doesn't seem to make any mention ofmediawiki/semantic-maps
, so I'm not sure where the conflict comes from.I would appreciate any help understanding the what causes the problem so I don't have it in the future.
The text was updated successfully, but these errors were encountered: