Last active
February 13, 2019 15:04
-
-
Save Dorf/8752f65d6776dc27d3b211354072e9c8 to your computer and use it in GitHub Desktop.
[Local Starter Wordpress Composer File] for development #wordpress #development #local #valet
This file contains hidden or 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" : "Vendor/Project", | |
"description" : "", | |
"keywords" : [ "wordpress" ], | |
"license" : "GPL-2.0+", | |
"authors" : [ | |
{ | |
"name" : "HappyHippopotam.us", | |
"email" : "[email protected]", | |
"role" : "Lead Developer" | |
} | |
], | |
"type" : "project", | |
"minimum-stability": "dev", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url" : "https://wpackagist.org" | |
} | |
], | |
"config" : { | |
"vendor-dir": "vendor" | |
}, | |
"require" : { | |
"wpackagist-plugin/advanced-custom-fields" : "*", | |
"wpackagist-plugin/log-viewer" : "*", | |
"roots/soil" : "dev-master", | |
"soberwp/intervention" : "dev-master", | |
"wpackagist-plugin/wp-optimize" : "*" | |
}, | |
"require-dev" : { | |
"wpackagist-plugin/log-deprecated-notices" : "*", | |
"wpackagist-plugin/debug-bar" : "*", | |
"wpackagist-plugin/debug-bar-console" : "*", | |
"wpackagist-plugin/user-switching" : "*", | |
"wpackagist-plugin/simply-show-ids" : "*", | |
"wpackagist-plugin/discourage-search-engines-notifier" : "*" | |
}, | |
"extra" : { | |
"installer-paths" : { | |
"wp-content/plugins/{$name}/" : ["type:wordpress-plugin"], | |
"wp-content/themes/{$name}/" : ["type:wordpress-theme"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment