diff --git a/netgen/content-browser/2.0/config/routes/netgen_content_browser.yaml b/netgen/content-browser/2.0/config/routes/netgen_content_browser.yaml new file mode 100644 index 00000000..21b9cf19 --- /dev/null +++ b/netgen/content-browser/2.0/config/routes/netgen_content_browser.yaml @@ -0,0 +1,3 @@ +netgen_content_browser: + resource: "@NetgenContentBrowserBundle/Resources/config/routing.yaml" + prefix: "%netgen_content_browser.route_prefix%" diff --git a/netgen/content-browser/2.0/manifest.json b/netgen/content-browser/2.0/manifest.json new file mode 100644 index 00000000..824ab6a2 --- /dev/null +++ b/netgen/content-browser/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Netgen\\Bundle\\ContentBrowserBundle\\NetgenContentBrowserBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/netgen/content-browser/2.0/post-install.txt b/netgen/content-browser/2.0/post-install.txt new file mode 100644 index 00000000..ba39cbf8 --- /dev/null +++ b/netgen/content-browser/2.0/post-install.txt @@ -0,0 +1,2 @@ + * Learn how to integrate Content Browser into your CMS backend by reading + the documentation located at: https://docs.netgen.io/projects/cb/en/latest/ diff --git a/netgen/layouts-contentful/2.0/config/routes/netgen_layouts_contentful.yaml b/netgen/layouts-contentful/2.0/config/routes/netgen_layouts_contentful.yaml new file mode 100644 index 00000000..ff3ff4b6 --- /dev/null +++ b/netgen/layouts-contentful/2.0/config/routes/netgen_layouts_contentful.yaml @@ -0,0 +1,2 @@ +netgen_layouts_contentful: + resource: "@NetgenLayoutsContentfulBundle/Resources/config/routing.yaml" diff --git a/netgen/layouts-contentful/2.0/manifest.json b/netgen/layouts-contentful/2.0/manifest.json new file mode 100644 index 00000000..5221ff2c --- /dev/null +++ b/netgen/layouts-contentful/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Netgen\\Bundle\\LayoutsContentfulBundle\\NetgenLayoutsContentfulBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/netgen/layouts-core/2.0/config/routes/netgen_layouts.yaml b/netgen/layouts-core/2.0/config/routes/netgen_layouts.yaml new file mode 100644 index 00000000..f4491697 --- /dev/null +++ b/netgen/layouts-core/2.0/config/routes/netgen_layouts.yaml @@ -0,0 +1,3 @@ +netgen_layouts: + resource: "@NetgenLayoutsBundle/Resources/config/routing.yaml" + prefix: "%netgen_layouts.route_prefix%" diff --git a/netgen/layouts-core/2.0/manifest.json b/netgen/layouts-core/2.0/manifest.json new file mode 100644 index 00000000..711c4f19 --- /dev/null +++ b/netgen/layouts-core/2.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Netgen\\Bundle\\LayoutsBundle\\NetgenLayoutsBundle": ["all"], + "Netgen\\Bundle\\LayoutsAdminBundle\\NetgenLayoutsAdminBundle": ["all"], + "Netgen\\Bundle\\LayoutsDebugBundle\\NetgenLayoutsDebugBundle": ["dev", "test"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/netgen/layouts-core/2.0/post-install.txt b/netgen/layouts-core/2.0/post-install.txt new file mode 100644 index 00000000..5ccadd1f --- /dev/null +++ b/netgen/layouts-core/2.0/post-install.txt @@ -0,0 +1,12 @@ + * For Netgen Layouts to function, you need to import the database tables + into your database. Currently, only MySQL is supported. To import the tables, + use the following command from your project root: + + php bin/console doctrine:migrations:migrate --configuration=vendor/netgen/layouts-core/migrations/doctrine.yaml + + * Enable ESI and fragments support in the config/packages/framework.yaml file. + + * Complete the installation procedure by following instructions detailed at + https://docs.netgen.io/projects/layouts/en/latest/getting_started/install_existing_project.html + +Documentation: https://docs.netgen.io/projects/layouts/en/latest/ diff --git a/netgen/layouts-sylius/2.0/config/routes/netgen_layouts_sylius.yaml b/netgen/layouts-sylius/2.0/config/routes/netgen_layouts_sylius.yaml new file mode 100644 index 00000000..520a4a42 --- /dev/null +++ b/netgen/layouts-sylius/2.0/config/routes/netgen_layouts_sylius.yaml @@ -0,0 +1,2 @@ +netgen_layouts_sylius: + resource: "@NetgenLayoutsSyliusBundle/Resources/config/routing.yaml" diff --git a/netgen/layouts-sylius/2.0/manifest.json b/netgen/layouts-sylius/2.0/manifest.json new file mode 100644 index 00000000..c355d87c --- /dev/null +++ b/netgen/layouts-sylius/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Netgen\\Bundle\\LayoutsSyliusBundle\\NetgenLayoutsSyliusBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}