From 3f118a0d925b0c476361379fbbbca9bddf5031be Mon Sep 17 00:00:00 2001 From: Mike Little Date: Wed, 18 Feb 2026 16:40:24 +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 --- docs/email-delivery.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/docs/email-delivery.md b/docs/email-delivery.md index 29df8a2b..63ecf815 100644 --- a/docs/email-delivery.md +++ b/docs/email-delivery.md @@ -23,9 +23,13 @@ the `altis.modules.cloud.email-from-address` setting. ```json { - "modules": { - "cloud": { - "email-from-address": "webmaster@mydomainname.com" + "extra": { + "altis": { + "modules": { + "cloud": { + "email-from-address": "webmaster@mydomainname.com" + } + } } } } @@ -81,9 +85,13 @@ example. (By default this is set to `false`, which uses the default region.) ```json { - "modules": { - "cloud": { - "email-region": "us-east-1" + "extra": { + "altis": { + "modules": { + "cloud": { + "email-region": "us-east-1" + } + } } } }