From 9ce7a55027ed77a223131b6dd03c8b8f8a0e9dc7 Mon Sep 17 00:00:00 2001 From: Leo Feyer Date: Thu, 30 Aug 2018 10:10:05 +0200 Subject: [PATCH] Add a recipe for contao/core-bundle and contao/installation-bundle --- contao/core-bundle/4.6/manifest.json | 18 ++++++++++++++++++ contao/core-bundle/4.6/post-install.txt | 16 ++++++++++++++++ .../4.6/config/routes/contao_installation.yaml | 2 ++ contao/installation-bundle/4.6/manifest.json | 5 +++++ 4 files changed, 41 insertions(+) create mode 100644 contao/core-bundle/4.6/manifest.json create mode 100644 contao/core-bundle/4.6/post-install.txt create mode 100644 contao/installation-bundle/4.6/config/routes/contao_installation.yaml create mode 100644 contao/installation-bundle/4.6/manifest.json diff --git a/contao/core-bundle/4.6/manifest.json b/contao/core-bundle/4.6/manifest.json new file mode 100644 index 00000000..f4013526 --- /dev/null +++ b/contao/core-bundle/4.6/manifest.json @@ -0,0 +1,18 @@ +{ + "bundles": { + "Contao\\CoreBundle\\ContaoCoreBundle": ["all"] + }, + "composer-scripts": { + "contao:install %PUBLIC_DIR%": "symfony-cmd", + "contao:symlinks %PUBLIC_DIR%": "symfony-cmd" + }, + "gitignore": [ + "/assets/", + "/files/", + "/system/*", + "!/system/config/", + "/system/config/localconfig.php", + "/system/config/tcpdf.php", + "/system/modules/*/.skip" + ] +} diff --git a/contao/core-bundle/4.6/post-install.txt b/contao/core-bundle/4.6/post-install.txt new file mode 100644 index 00000000..a2f27911 --- /dev/null +++ b/contao/core-bundle/4.6/post-install.txt @@ -0,0 +1,16 @@ + + Next: Contao configuration + + + * Enable ESI in the config/packages/framework.yaml file. + + * Add the Contao routes to your config/routing.yaml file and + make sure that they will be loaded at the very end. + + * Edit your config/security.yaml file and include all the + necessary providers, firewalls and access control sections. + + * Complete the installation by opening the /contao/install route + in your browser. + +Documentation: https://github.com/contao/core-bundle diff --git a/contao/installation-bundle/4.6/config/routes/contao_installation.yaml b/contao/installation-bundle/4.6/config/routes/contao_installation.yaml new file mode 100644 index 00000000..9d2ec7e2 --- /dev/null +++ b/contao/installation-bundle/4.6/config/routes/contao_installation.yaml @@ -0,0 +1,2 @@ +contao_installation: + resource: "@ContaoInstallationBundle/Resources/config/routing.yml" diff --git a/contao/installation-bundle/4.6/manifest.json b/contao/installation-bundle/4.6/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/contao/installation-bundle/4.6/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}