Last active
January 25, 2021 20:42
-
-
Save onnimonni/154cd5988cb93f2490c5 to your computer and use it in GitHub Desktop.
composer.json for latest Wordpress using johnpbloch/wordpress and languages.koodimonni.fi. This file has also an example of how to handle wordpress dropin-files (e.g. object-cache.php, sunrise.php, ...) using 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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://wp-languages.github.io" | |
}, | |
{ | |
"type": "composer", | |
"url": "https://wpackagist.org" | |
} | |
], | |
"require": { | |
"johnpbloch/wordpress": "*", | |
"koodimonni-language/fi": "*", | |
"koodimonni-language/ru_RU": "*", | |
"koodimonni-language/fr_fr": "*", | |
"koodimonni-language/en_gb": "*", | |
"koodimonni-language/en_au": "*", | |
"koodimonni-language/nl_nl": "*", | |
"koodimonni-language/ca": "*", | |
"koodimonni-language/az": "*", | |
"wpackagist-plugin/wp-redis": "*", | |
"wpackagist-theme/twentyfifteen": "*" | |
}, | |
"extra": { | |
"installer-paths": { | |
"htdocs/wp-content/plugins/{$name}": ["type:wordpress-plugin"], | |
"htdocs/wp-content/themes/{$name}": ["type:wordpress-theme"], | |
"htdocs/wp-content/mu-plugins/{$name}": ["type:wordpress-muplugin"] | |
}, | |
"dropin-paths": { | |
"htdocs/wp-content/languages/": ["vendor:koodimonni-language"], | |
"htdocs/wp-content/languages/plugins/": ["vendor:koodimonni-plugin-language"], | |
"htdocs/wp-content/languages/themes/": ["vendor:koodimonni-theme-language"], | |
"htdocs/wp-content/": ["package:wpackagist-plugin/wp-redis:object-cache.php"] | |
}, | |
"wordpress-install-dir": "htdocs/wordpress" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment