diff --git a/contao/core-bundle/4.6/config/packages/contao_core.yaml b/contao/core-bundle/4.6/config/packages/contao_core.yaml new file mode 100644 index 00000000..8e665be6 --- /dev/null +++ b/contao/core-bundle/4.6/config/packages/contao_core.yaml @@ -0,0 +1,3 @@ +# See https://github.com/contao/core-bundle +contao: + web_dir: "%kernel.project_dir%/public" diff --git a/contao/core-bundle/4.6/manifest.json b/contao/core-bundle/4.6/manifest.json new file mode 100644 index 00000000..0c538cd8 --- /dev/null +++ b/contao/core-bundle/4.6/manifest.json @@ -0,0 +1,21 @@ +{ + "bundles": { + "Contao\\CoreBundle\\ContaoCoreBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "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..627ec044 --- /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 they are 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..f14e39e9 --- /dev/null +++ b/contao/installation-bundle/4.6/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Contao\\InstallationBundle\\ContaoInstallationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}