85 lines
2.2 KiB
JSON
85 lines
2.2 KiB
JSON
{
|
|
"name": "roots/bedrock",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"description": "WordPress boilerplate with Composer, 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": ">=8.0 <8.1",
|
|
"ext-gd": "*",
|
|
"ext-redis": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-soap": "*",
|
|
"ext-exif": "*",
|
|
"ext-imagick": "*",
|
|
"ext-intl": "*",
|
|
"composer/installers": "^2.1",
|
|
"vlucas/phpdotenv": "^5.4",
|
|
"oscarotero/env": "^2.1",
|
|
"roots/bedrock-autoloader": "^1.0",
|
|
"roots/bedrock-disallow-indexing": "^2.0",
|
|
"roots/wordpress": "^6.0",
|
|
"roots/wp-config": "^1.0.0",
|
|
"roots/wp-password-bcrypt": "^1.1.0",
|
|
"wpackagist-plugin/wp-webhooks": "^2.0",
|
|
"wpackagist-plugin/code-snippets": "^3.1"
|
|
},
|
|
"require-dev": {
|
|
"heroku/heroku-buildpack-php": "*",
|
|
"squizlabs/php_codesniffer": "^3.6.2",
|
|
"roave/security-advisories": "dev-latest"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"allow-plugins": {
|
|
"composer/installers": true,
|
|
"roots/wordpress-core-installer": true
|
|
}
|
|
},
|
|
"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');\""
|
|
],
|
|
"test": [
|
|
"phpcs"
|
|
]
|
|
}
|
|
}
|