Skip to content

Instantly share code, notes, and snippets.

@gjreasoner
Created November 10, 2017 19:28
Show Gist options
  • Save gjreasoner/3ad2ffbee5116f9aeab6d2a4db41dc81 to your computer and use it in GitHub Desktop.
Save gjreasoner/3ad2ffbee5116f9aeab6d2a4db41dc81 to your computer and use it in GitHub Desktop.
Bedrock Composer
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock", "roots", "wordpress", "stack", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.6",
"ext-gd": "*",
"composer/installers": "^1.4",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.8.3",
"oscarotero/env": "^1.1.0",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/contact-form-7": "*",
"wpackagist-plugin/contact-form-7-honeypot": "*",
"wpackagist-plugin/flamingo": "*",
"wpackagist-plugin/html-post-editor-new": "*",
"wpackagist-plugin/imsanity": "*",
"wpackagist-plugin/inspectlet-heatmaps-and-user-session-recording": "*",
"wpackagist-plugin/wordpress-seo": "*",
"wpackagist-plugin/wp-preload-pjax": "*",
"wpackagist-plugin/wp-super-cache": "*",
"wpackagist-plugin/cloudbric-basic-ssl": "*",
"wpackagist-plugin/envira-gallery-lite": "*",
"wpackagist-plugin/amazon-web-services": "*",
"wpackagist-plugin/amazon-s3-and-cloudfront": "*",
"davedevelopment/phpmig": "^1.4",
"pimple/pimple": "^3.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0.2"
},
"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"]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"vendor/bin/phpmig migrate"
],
"test": [
"vendor/bin/phpcs"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment