From d47b4ed0f1a697d64044fd507aeb245bf1821566 Mon Sep 17 00:00:00 2001 From: Manoj Kumar <7418454+ManojBitx@users.noreply.github.com> Date: Sun, 6 Oct 2024 15:02:38 +0530 Subject: [PATCH] Add Encrypter Bundle recipes (#1685) * Add Encrypter Bundle recipes * fix: indentation * Add comment in yaml * Update comment * Update comment * Remove comment from yaml --- .../1.0/config/packages/encrypter.yaml | 2 ++ manojx/encrypter-bundle/1.0/manifest.json | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 manojx/encrypter-bundle/1.0/config/packages/encrypter.yaml create mode 100644 manojx/encrypter-bundle/1.0/manifest.json diff --git a/manojx/encrypter-bundle/1.0/config/packages/encrypter.yaml b/manojx/encrypter-bundle/1.0/config/packages/encrypter.yaml new file mode 100644 index 00000000..2871b38c --- /dev/null +++ b/manojx/encrypter-bundle/1.0/config/packages/encrypter.yaml @@ -0,0 +1,2 @@ +encrypter: + secret: '%env(ENCRYPTER_SECRET)%' diff --git a/manojx/encrypter-bundle/1.0/manifest.json b/manojx/encrypter-bundle/1.0/manifest.json new file mode 100644 index 00000000..55b806ab --- /dev/null +++ b/manojx/encrypter-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "ManojX\\EncrypterBundle\\EncrypterBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "ENCRYPTER_SECRET": "your_secret_key_here" + } +}