MediaWiki/Upgrade/REL1 26 to REL1 27: Difference between revisions
No edit summary |
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight" |
||
| (One intermediate revision by one other user not shown) | |||
| Line 3: | Line 3: | ||
I had to struggle with [[Composer]] and the Composer merge plugin and finally figured out how to get everything to work in concert. The trick was NOT to use the glob wildcards as suggested. Instead, your composer.local.json should look something like this: | I had to struggle with [[Composer]] and the Composer merge plugin and finally figured out how to get everything to work in concert. The trick was NOT to use the glob wildcards as suggested. Instead, your composer.local.json should look something like this: | ||
< | <syntaxhighlight lang="json"> | ||
{ | { | ||
"require": { | "require": { | ||
| Line 13: | Line 13: | ||
} | } | ||
} | } | ||
</ | </syntaxhighlight> | ||
== Extension and Skin Upgrades == | == Extension and Skin Upgrades == | ||
I built out on my previous shell script to get a more general purpose tool that lets me see the provenance of the code in the extensions and skins directories. | I built out on my previous shell script to get a more general purpose tool that lets me see the provenance of the code in the extensions and skins directories. | ||
< | <syntaxhighlight lang="php"> | ||
<?php | <?php | ||
| Line 168: | Line 168: | ||
} | } | ||
</ | </syntaxhighlight> | ||
[[Category:Wiki]] | [[Category:Wiki]] | ||