From 9d62549b82b18d78e4d885471f662bbf24a43a90 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 13:56:26 +0200 Subject: [PATCH 1/4] Add recipe for connectholland/timchimp-bundle --- connectholland/timchimp-bundle/1.0/manifest.json | 10 ++++++++++ connectholland/timchimp-bundle/1.0/post-install.txt | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 connectholland/timchimp-bundle/1.0/manifest.json create mode 100644 connectholland/timchimp-bundle/1.0/post-install.txt diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timchimp-bundle/1.0/manifest.json new file mode 100644 index 00000000..281e13b6 --- /dev/null +++ b/connectholland/timchimp-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"], + "ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": ["all"] + }, + "env": { + "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" + }, + "aliases": ["timechimp", "connectholland-timechimp"] +} diff --git a/connectholland/timchimp-bundle/1.0/post-install.txt b/connectholland/timchimp-bundle/1.0/post-install.txt new file mode 100644 index 00000000..2009c2ae --- /dev/null +++ b/connectholland/timchimp-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + To finish the install + + + * Your Connect Holland Timechimp bundle installation is almost ready: + 1. Add your Timechimp Access Token to the .env file From b3fb2fdf5ec36174c924d282dcdd07220bffe6e6 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 13:58:16 +0200 Subject: [PATCH 2/4] Remove aliases --- connectholland/timchimp-bundle/1.0/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timchimp-bundle/1.0/manifest.json index 281e13b6..be7dfa63 100644 --- a/connectholland/timchimp-bundle/1.0/manifest.json +++ b/connectholland/timchimp-bundle/1.0/manifest.json @@ -5,6 +5,5 @@ }, "env": { "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" - }, - "aliases": ["timechimp", "connectholland-timechimp"] + } } From d1cdeed73344bd8a7165fd128fd128a870964116 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 14:00:13 +0200 Subject: [PATCH 3/4] Fix typo --- .../{timchimp-bundle => timechimp-bundle}/1.0/manifest.json | 0 .../{timchimp-bundle => timechimp-bundle}/1.0/post-install.txt | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename connectholland/{timchimp-bundle => timechimp-bundle}/1.0/manifest.json (100%) rename connectholland/{timchimp-bundle => timechimp-bundle}/1.0/post-install.txt (100%) diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timechimp-bundle/1.0/manifest.json similarity index 100% rename from connectholland/timchimp-bundle/1.0/manifest.json rename to connectholland/timechimp-bundle/1.0/manifest.json diff --git a/connectholland/timchimp-bundle/1.0/post-install.txt b/connectholland/timechimp-bundle/1.0/post-install.txt similarity index 100% rename from connectholland/timchimp-bundle/1.0/post-install.txt rename to connectholland/timechimp-bundle/1.0/post-install.txt From 0240dd18d5765e3607e76d3423f8e08f26260ca3 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Mon, 29 Jun 2020 15:24:14 +0200 Subject: [PATCH 4/4] Add configuration --- .../1.0/config/packages/connectholland_timechimp.yaml | 2 ++ connectholland/timechimp-bundle/1.0/manifest.json | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml diff --git a/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml new file mode 100644 index 00000000..6f608c09 --- /dev/null +++ b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml @@ -0,0 +1,2 @@ +connectholland_timechimp: + api_key: '%env(string:TIMECHIMP_ACCESS_TOKEN)%' diff --git a/connectholland/timechimp-bundle/1.0/manifest.json b/connectholland/timechimp-bundle/1.0/manifest.json index be7dfa63..2565f3bb 100644 --- a/connectholland/timechimp-bundle/1.0/manifest.json +++ b/connectholland/timechimp-bundle/1.0/manifest.json @@ -1,8 +1,10 @@ { "bundles": { - "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"], "ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": ["all"] }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, "env": { "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" }