From 435e27571706855e4528f030ddfbeb55e428da71 Mon Sep 17 00:00:00 2001 From: Rajeshreeputra Date: Fri, 10 Nov 2023 16:20:47 +0530 Subject: [PATCH] ACMS-1826: Add Acquia global commands in DRS. --- .gitignore | 1 + README.md | 12 ++++++++++++ composer.json | 1 + 3 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 75b2b4e..2ea3735 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ vendor .idea/ +.DS_Store composer.lock diff --git a/README.md b/README.md index 179bc3f..278cc06 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,18 @@ and deployable on Acquia Cloud. ## Installation +### Include Acquia Global Command in DRS for multisite functionality +To use global command with DRS for multisite functionality please add below in +your root composer.json file. +``` +"repositories": { + "acquia_global_commands": { + "type": "vcs", + "url": "git@github.com:vishalkhode1/acquia_global_commands.git" + } +} +``` + You can also install this using Composer like so: ``` diff --git a/composer.json b/composer.json index 5520cf1..39e5068 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,7 @@ "require": { "php": ">=8.1", "composer-plugin-api": "^2", + "acquia/acquia_global_commands": "dev-develop", "acquia/drupal-environment-detector": "^1.5.3", "consolidation/config": "^2.0.0", "grasmash/yaml-expander": "^3.0",