Last active
September 27, 2015 17:18
-
-
Save matgargano/b0c792d09d2f24da873e to your computer and use it in GitHub Desktop.
Basic WordPress 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
web/wp/ | |
web/app/plugins | |
web/app/mu-plugins/ | |
web/uploads/ |
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": "statenweb/statenweb", | |
"description": "wordpress setup for our staten island web design project", | |
"license": "proprietary", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
} | |
], | |
"require": { | |
"johnpbloch/wordpress": "4.3.1", | |
"jublonet/codebird-php": "~2.7", | |
"wpackagist-plugin/wp-original-media-path": "~1.4", | |
"wpackagist-plugin/wordfence": "~6.0", | |
"mnsami/composer-custom-directory-installer": "1.0.*", | |
"vlucas/phpdotenv": "~2.0" | |
}, | |
"extra": { | |
"wordpress-install-dir": "./web/wp", | |
"installer-paths": { | |
"./web/app/plugins/{$name}/": [ | |
"type:wordpress-plugin" | |
], | |
"./phpdotenv/": ["vlucas/phpdotenv"] | |
} | |
}, | |
"config": { | |
"vendor-dir": "./web/app/mu-plugins" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment