80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"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", "composer", "roots", "wordpress", "wp", "wp-config"
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/roots/bedrock/issues",
|
|
"forum": "https://discourse.roots.io/category/bedrock"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "composer",
|
|
"url": "https://wpackagist.org",
|
|
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.3",
|
|
"composer/installers": "^1.8",
|
|
"vlucas/phpdotenv": "^4.1.3",
|
|
"oscarotero/env": "^1.2.0",
|
|
"roots/wordpress": "5.5.1",
|
|
"roots/wp-config": "1.0.0",
|
|
"roots/wp-password-bcrypt": "1.0.0",
|
|
"wpackagist-plugin/advanced-custom-fields": "^5.9.1",
|
|
"wpackagist-plugin/classic-editor": "^1.5",
|
|
"wpackagist-plugin/timber-library": "^1.18",
|
|
"twbs/bootstrap": "4.5.0",
|
|
"twig/extensions": "^1.5",
|
|
"wpackagist-plugin/advanced-forms": "^1.7",
|
|
"wpackagist-plugin/wp-mail-smtp": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "^3.5.4",
|
|
"roave/security-advisories": "dev-master"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"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-bootstrap": [
|
|
"mkdir web/app/themes/la_mine/asset",
|
|
"cp -R vendor/twbs/bootstrap/dist web/app/themes/la_mine/asset"
|
|
],
|
|
"test": [
|
|
"phpcs"
|
|
]
|
|
}
|
|
}
|