Created
October 21, 2015 16:44
-
-
Save webarthur/117c34d05d459b322eaf to your computer and use it in GitHub Desktop.
Easy way to install WordPress and plugins with Composer
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": "http://wpackagist.org" | |
} | |
], | |
"require": { | |
"php": ">=5.4", | |
"johnpbloch/wordpress": "*" | |
, "wpackagist-plugin/advanced-settings": "*" | |
}, | |
"extra": { | |
"wordpress-install-dir": "." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment