From b858f4d77fa2436955dfa76fc1eb407aa9c913be Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Mon, 23 Sep 2024 10:56:47 +0200 Subject: [PATCH] feat: add dynamodb hint --- guides/plugins/apps/app-sdks/symfony-bundle/index.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/guides/plugins/apps/app-sdks/symfony-bundle/index.md b/guides/plugins/apps/app-sdks/symfony-bundle/index.md index d36a41447..c32acd170 100644 --- a/guides/plugins/apps/app-sdks/symfony-bundle/index.md +++ b/guides/plugins/apps/app-sdks/symfony-bundle/index.md @@ -11,11 +11,19 @@ App Bundle integrates the PHP App SDK for Symfony. This can be accessed at [app- ## Installation +### With SQL based storage (Doctrine) + ```bash composer require shopware/app-bundle doctrine/orm symfony/doctrine-bridge ``` -## Quick Start +### With NoSQL based storage (DynamoDB) + +```bash +composer require shopware/app-bundle async-aws/async-aws-bundle async-aws/dynamo-db +``` + +## Quick Start using SQL based storage (Doctrine) ### 1. Create a new Symfony Project (skip if existing)