From e573d85cde27c47659e311cb3817622e56f515f0 Mon Sep 17 00:00:00 2001 From: Ala Eddine Khefifi Date: Sat, 19 Feb 2022 10:38:39 +0100 Subject: [PATCH] add nzo/url-encryptor-bundle (#1338) --- .../6.0/config/packages/nzo_encryptor.yaml | 3 +++ nzo/url-encryptor-bundle/6.0/manifest.json | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 nzo/url-encryptor-bundle/6.0/config/packages/nzo_encryptor.yaml create mode 100644 nzo/url-encryptor-bundle/6.0/manifest.json diff --git a/nzo/url-encryptor-bundle/6.0/config/packages/nzo_encryptor.yaml b/nzo/url-encryptor-bundle/6.0/config/packages/nzo_encryptor.yaml new file mode 100644 index 00000000..0af6d51b --- /dev/null +++ b/nzo/url-encryptor-bundle/6.0/config/packages/nzo_encryptor.yaml @@ -0,0 +1,3 @@ +nzo_encryptor: + secret_key: '%env(NZO_ENCRYPTOR_SECRET)%' + secret_iv: '%env(NZO_ENCRYPTOR_IV)%' diff --git a/nzo/url-encryptor-bundle/6.0/manifest.json b/nzo/url-encryptor-bundle/6.0/manifest.json new file mode 100644 index 00000000..17d18931 --- /dev/null +++ b/nzo/url-encryptor-bundle/6.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Nzo\\UrlEncryptorBundle\\NzoUrlEncryptorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "NZO_ENCRYPTOR_SECRET": "change_me", + "NZO_ENCRYPTOR_IV": "change_me" + } +}