From 99c3f7e1a603bde8c0b1d286ba2f767144669f4e Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Sun, 6 Oct 2024 09:32:33 +0000 Subject: [PATCH] Update Flex endpoint --- ...17a2ffda1869be8b0d19ba38d99c0c2fbdafd.json | 78 +++++++++++++++++++ shopware.app-bundle.4.0.json | 6 +- 2 files changed, 81 insertions(+), 3 deletions(-) create mode 100644 archived/shopware.app-bundle/b1417a2ffda1869be8b0d19ba38d99c0c2fbdafd.json diff --git a/archived/shopware.app-bundle/b1417a2ffda1869be8b0d19ba38d99c0c2fbdafd.json b/archived/shopware.app-bundle/b1417a2ffda1869be8b0d19ba38d99c0c2fbdafd.json new file mode 100644 index 00000000..558e2c9f --- /dev/null +++ b/archived/shopware.app-bundle/b1417a2ffda1869be8b0d19ba38d99c0c2fbdafd.json @@ -0,0 +1,78 @@ +{ + "manifests": { + "shopware/app-bundle": { + "manifest": { + "bundles": { + "Shopware\\AppBundle\\ShopwareAppBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "SHOPWARE_APP_NAME": "TestApp", + "SHOPWARE_APP_SECRET": "MySecret" + }, + "post-install-output": [ + " * Warning the shopware/app-bundle uses by default a in-memory database. You should use doctrine or dynamodb", + "", + " For doctrine install the following packages: composer require doctrine/orm symfony/doctrine-bridge", + " For dynamodb install the following packages: composer require async-aws/async-aws-bundle async-aws/dynamo-db", + "", + " Make sure to configure the correct storage after installing the packages in config/packages/shopware_app.yaml" + ] + }, + "files": { + "config/packages/shopware_app.yaml": { + "contents": [ + "shopware_app:", + " name: '%env(SHOPWARE_APP_NAME)%'", + " secret: '%env(SHOPWARE_APP_SECRET)%'", + " # You should specify a specific storage like: dynamodb or doctrine", + " storage: 'auto'", + " doctrine:", + " shop_class: App\\Entity\\Shop", + "" + ], + "executable": false + }, + "config/routes/shopware_app.yaml": { + "contents": [ + "shopware_app_lifecycle:", + " resource: '@ShopwareAppBundle/Resources/config/routing/lifecycle.xml'", + " prefix: /app", + "", + "shopware_app_webhook:", + " resource: '@ShopwareAppBundle/Resources/config/routing/webhook.xml'", + " prefix: /app", + "", + "" + ], + "executable": false + }, + "src/Entity/Shop.php": { + "contents": [ + "