From 9bc7e48d4a76a44616cad49d954951faffd6edf2 Mon Sep 17 00:00:00 2001 From: Aashan Ghimire Date: Thu, 27 Oct 2022 13:11:34 +0545 Subject: [PATCH] [Actions]: Removed extensions.php in favor of bundles.php (#99) --- .github/ci/files/config/bundles.php | 6 ++++++ .github/ci/files/extensions.template.php | 8 -------- .github/ci/scripts/setup-pimcore-environment.sh | 1 - 3 files changed, 6 insertions(+), 9 deletions(-) create mode 100644 .github/ci/files/config/bundles.php delete mode 100644 .github/ci/files/extensions.template.php diff --git a/.github/ci/files/config/bundles.php b/.github/ci/files/config/bundles.php new file mode 100644 index 0000000..261196e --- /dev/null +++ b/.github/ci/files/config/bundles.php @@ -0,0 +1,6 @@ + ['all' => false], + 'Pimcore\\Bundle\\PerspectiveEditorBundle\\PimcorePerspectiveEditorBundle' => ['all' => true], +]; diff --git a/.github/ci/files/extensions.template.php b/.github/ci/files/extensions.template.php deleted file mode 100644 index de5ad5e..0000000 --- a/.github/ci/files/extensions.template.php +++ /dev/null @@ -1,8 +0,0 @@ - [ - "Pimcore\\Bundle\\EcommerceFrameworkBundle\\PimcoreEcommerceFrameworkBundle" => FALSE, - "Pimcore\\Bundle\\PerspectiveEditorBundle\\PimcorePerspectiveEditorBundle" => TRUE, - ] -]; diff --git a/.github/ci/scripts/setup-pimcore-environment.sh b/.github/ci/scripts/setup-pimcore-environment.sh index d98ef55..b8f7369 100755 --- a/.github/ci/scripts/setup-pimcore-environment.sh +++ b/.github/ci/scripts/setup-pimcore-environment.sh @@ -14,4 +14,3 @@ cp -r .github/ci/files/bin/console bin/console chmod 755 bin/console cp -r .github/ci/files/kernel/. kernel cp -r .github/ci/files/public/. public -cp .github/ci/files/extensions.template.php var/config/extensions.php