Created
March 31, 2015 08:02
-
-
Save brettmax/57a12673f8679721d133 to your computer and use it in GitHub Desktop.
http://roots.io Bedrock root composer.json file
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": "roots/bedrock", | |
"type": "project", | |
"license": "MIT", | |
"description": "A modern WordPress stack", | |
"homepage": "http://roots.io/wordpress-stack/", | |
"authors": [{ | |
"name": "Scott Walkinshaww", | |
"email": "[email protected]", | |
"homepage": "https://github.com/swalkinshaw" | |
}, { | |
"name": "Ben Word", | |
"email": "[email protected]", | |
"homepage": "https://github.com/retlehs" | |
}], | |
"keywords": [ | |
"wordpress", "stack", "capistrano", "composer", "vagrant", "wp" | |
], | |
"support": { | |
"issues": "https://github.com/roots/bedrock/issues", | |
"forum": "http://discourse.roots.io/category/bedrock" | |
}, | |
"minimum-stability": "dev", | |
"config": { | |
"preferred-install": "dist", | |
"generate-salts": true | |
}, | |
"autoload": { | |
"psr-0": { | |
"Roots\\Bedrock\\Installer": "scripts" | |
} | |
}, | |
"scripts": { | |
"post-root-package-install": ["Roots\\Bedrock\\Installer::addSalts"] | |
}, | |
"repositories": [{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
}, { | |
"type": "vcs", | |
"url": "[email protected]:brettlefty/custom-post-meta.git" | |
}, { | |
"type": "vcs", | |
"url": "[email protected]:brettlefty/additional-options.git" | |
}], | |
"require": { | |
"php": ">=5.4", | |
"composer/installers": "1.0.*@dev", | |
"johnpbloch/wordpress": "^4.1.1", | |
"vlucas/phpdotenv": "1.1.*@dev", | |
"roots/wp-h5bp-htaccess": "dev-master", | |
"roots/wp-stage-switcher": "dev-master", | |
"roots/soil": "dev-master", | |
"wpackagist-plugin/force-regenerate-thumbnails": "^2.0.3", | |
"wpackagist-plugin/wordpress-seo": "^2.0", | |
"wpackagist-plugin/jetpack": "^3.4", | |
"brettlefty/custom-post-meta": "^1.0.4", | |
"brettlefty/additional-options": "^1.0.2" | |
}, | |
"require-dev": { | |
"php": ">=5.4", | |
"interconnectit/search-replace-db": "dev-master" | |
}, | |
"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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment