Created
December 22, 2014 00:43
-
-
Save onnimonni/3a8ef68482803a1e7df8 to your computer and use it in GitHub Desktop.
koodimonni/composer-dropin-installer example 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
{ | |
"name": "roots/bedrock", | |
"type": "project", | |
"license": "MIT", | |
"description": "A modern WordPress stack", | |
"homepage": "http://roots.io/wordpress-stack/", | |
"authors": [ | |
{ | |
"name": "Scott Walkinshaw", | |
"email": "[email protected]", | |
"homepage": "https://github.com/swalkinshaw" | |
}, | |
{ | |
"name": "Ben Word", | |
"email": "[email protected]", | |
"homepage": "https://github.com/retlehs" | |
} | |
], | |
"keywords": [ | |
"wordpress", "stack", "capistrano", "composer", "vagrant", "wp" | |
], | |
"support": { | |
"issues": "https://github.com/roots/bedrock/issues", | |
"forum": "http://discourse.roots.io/category/bedrock" | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"generate-salts": true | |
}, | |
"autoload": { | |
"psr-0": {"Roots\\Bedrock\\Installer": "scripts"} | |
}, | |
"scripts": { | |
"post-root-package-install": ["Roots\\Bedrock\\Installer::addSalts"] | |
}, | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
}, | |
{ | |
"type": "composer", | |
"url": "languages-mirror.koodimonni.fi" | |
}, | |
{ | |
"type": "vcs", | |
"url": "https://github.com/koodimonni/composer-dropin-installer" | |
} | |
], | |
"require": { | |
"koodimonni/composer-dropin-installer": "*", | |
"php": ">=5.4", | |
"johnpbloch/wordpress": "4.1", | |
"composer/installers": "*", | |
"vlucas/phpdotenv": "1.0.9", | |
"koodimonni-language/fi": "*", | |
"wpackagist-plugin/wp-redis": "*", | |
"wpackagist-plugin/wordpress-mu-domain-mapping": "*" | |
}, | |
"extra": { | |
"installer-paths": { | |
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"], | |
"web/app/plugins/{$name}/": ["type:wordpress-plugin"], | |
"web/app/themes/{$name}/": ["type:wordpress-theme"] | |
}, | |
"dropin-paths": { | |
"web/app/languages/": ["type:wordpress-language"], | |
"web/app/languages/plugins/": ["type:wordpress-plugin-language"], | |
"web/app/languages/themes/": ["type:wordpress-theme-language"], | |
"web/app/plugins/": [ | |
"package:wpackagist-plugin/wp-redis:object-cache.php", | |
"package:wppackagist-plugin/wordpress-mu-domain-mapping:sunrise.php"] | |
}, | |
"wordpress-install-dir": "web/wp" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this won't work out of the box.