Hi!
Thank you, I really appreciate your help. Here is my local composer.json file
{
"name": "myorg/new.website.tld",
"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"
},
{
"type": "composer",
"url": "https://composer.deliciousbrains.com"
},
{
"type": "composer",
"url": "https://composer.freemius.com/packages.json"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1",
"vlucas/phpdotenv": "^4",
"oscarotero/env": "^1",
"roots/wordpress": "^5",
"roots/wp-config": "^1",
"roots/wp-password-bcrypt": "^1",
"deliciousbrains-plugin/wp-migrate-db-pro": "^1.9",
"deliciousbrains-plugin/wp-migrate-db-pro-media-files": "^1.4",
"deliciousbrains-plugin/wp-migrate-db-pro-cli": "^1.3",
"deliciousbrains-plugin/wp-migrate-db-pro-theme-plugin-files": "^1.0",
"wpackagist-plugin/ewww-image-optimizer": "^5.2",
"wpackagist-plugin/wordfence": "^7",
"wpackagist-plugin/autodescription": "*",
"wpackagist-plugin/batcache": "*",
"wpackagist-plugin/post-smtp": "^2",
"wpackagist-plugin/password-protected": "^2",
"roots/soil": "*",
"wpackagist-plugin/category-posts": "^4",
"wpackagist-plugin/enable-media-replace": "^3",
"wpackagist-plugin/regenerate-thumbnails": "*",
"wpackagist-plugin/safe-svg": "^1",
"wpackagist-plugin/redis-cache": "^1",
"wpackagist-plugin/wp-super-cache": "*",
"soberwp/intervention": "*",
"freemius/widget-for-eventbrite-api-premium": "^2.9"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.4",
"roave/security-advisories": "dev-master",
"wpackagist-plugin/query-monitor": "*"
},
"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",
"freemius/widget-for-eventbrite-api-premium"
],
"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"
]
}
}