Created
June 18, 2014 18:52
-
-
Save jeanpierreb/55146fd7b80ad46bff2b to your computer and use it in GitHub Desktop.
Creates a WordPress sub-directory project from scratch.
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" : "jeanpierre/install-test", | |
"description" : "Test project for WordPress stack via Composer", | |
"license": "GPL-2.0", | |
"authors" : [ | |
{ | |
"name" : "Jean-Pierre Barthelemy", | |
"email" : "[email protected]", | |
"homepage": "http://jeanpier.re/" | |
} | |
], | |
"type" : "wordpress-core", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url" : "http://wpackagist.org" | |
} | |
], | |
"config" : { | |
"vendor-dir": "wp-content/vendor" | |
}, | |
"require" : { | |
"composer/installers": "1.0.x-dev", | |
"johnpbloch/wordpress" : "3.9.*", | |
"wpackagist-plugin/wp-super-cache": "1.4", | |
"wpackagist-theme/thematic": "1.0.*" | |
}, | |
"require-dev" : { | |
"wpackagist-plugin/a-fresher-cache" : "*", | |
"wpackagist-plugin/core-control" : "*", | |
"wpackagist-plugin/monster-widget" : "*", | |
"wpackagist-plugin/regenerate-thumbnails" : "*", | |
"wpackagist-plugin/theme-check" : "*", | |
"wpackagist-plugin/toolbar-theme-switcher" : "*", | |
"wpackagist-plugin/user-switching" : "*", | |
"wpackagist-plugin/wcm-user-language-switcher": "*" | |
}, | |
"extra" : { | |
"wordpress-install-dir": "wp" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment