-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX caliper-php lib can't be installed
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.
- Loading branch information
1 parent
9478c77
commit 8bc27ba
Showing
3 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"minimum-stability": "stable", | ||
"repositories": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/IMSGlobal/caliper-php" | ||
} | ||
], | ||
"require": { | ||
"mediawiki/maps": "~10.0", | ||
"pear/mail_mime-decode": "1.5.5.2", | ||
"google/apiclient":"^2.2", | ||
"imsglobal/caliper": "develop#c7e34e230abc7bbb647f8f94245cb649f6191bcd as 1.2.0" | ||
"google/apiclient":"^2.2" | ||
}, | ||
"extra": { | ||
"merge-plugin": { | ||
"include": [ | ||
"extensions/caliper/composer.json" | ||
] | ||
} | ||
} | ||
} |
This file contains 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