From d1d3b0d337be44e15c43aa6483cdfe8672de0163 Mon Sep 17 00:00:00 2001 From: Mike Little Date: Wed, 18 Feb 2026 16:40:05 +0000 Subject: [PATCH] Fix altis composer configuration example Fixes the `composer.json` configuration example to show the `altis` key goes inside the `extra` key. - Addresses https://github.com/humanmade/product-dev/issues/2001 --- .../guides/migrating/from-hm-platform.md | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/other-docs/guides/migrating/from-hm-platform.md b/other-docs/guides/migrating/from-hm-platform.md index 89cae6d7..e88fbe2b 100644 --- a/other-docs/guides/migrating/from-hm-platform.md +++ b/other-docs/guides/migrating/from-hm-platform.md @@ -227,9 +227,13 @@ setting in the `composer.json` setting `extra.altis.modules.cloud.email-from-add ```json { - "modules": { - "cloud": { - "email-from-address": "webmaster@mydomainname.com" + "extra": { + "altis": { + "modules": { + "cloud": { + "email-from-address": "webmaster@mydomainname.com" + } + } } } } @@ -243,9 +247,13 @@ on-boarded with Altis as a brand, you can disable the branding via the `altis.mo ```json { - "modules": { - "cms": { - "branding": false + "extra": { + "altis": { + "modules": { + "cms": { + "branding": false + } + } } } }