From 9979c5f0dcaaf35d6bcf98abb6e97399ea76ee48 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Mon, 6 Apr 2020 09:27:41 +0100
Subject: [PATCH] Issue #3121229 by alexpott, Neslee Canil Pinto, xjm: Remove
 config_environment module

---
 composer.lock                                 |  3 +--
 core/composer.json                            |  1 -
 .../config_environment.info.yml               |  7 -------
 .../config_environment.module                 | 21 -------------------
 4 files changed, 1 insertion(+), 31 deletions(-)
 delete mode 100644 core/modules/config_environment/config_environment.info.yml
 delete mode 100644 core/modules/config_environment/config_environment.module

diff --git a/composer.lock b/composer.lock
index 652d92a448a3..d9187c309a5d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -457,7 +457,7 @@
             "dist": {
                 "type": "path",
                 "url": "core",
-                "reference": "0c1a56a591d5a55e9beca019038289a445114d6b"
+                "reference": "e3d324da27c1060f5f9982ee20aa7f9845303fd2"
             },
             "require": {
                 "asm89/stack-cors": "^1.1",
@@ -524,7 +524,6 @@
                 "drupal/color": "self.version",
                 "drupal/comment": "self.version",
                 "drupal/config": "self.version",
-                "drupal/config_environment": "self.version",
                 "drupal/config_translation": "self.version",
                 "drupal/contact": "self.version",
                 "drupal/content_moderation": "self.version",
diff --git a/core/composer.json b/core/composer.json
index 318ba16f32d4..cf64c7800f29 100644
--- a/core/composer.json
+++ b/core/composer.json
@@ -68,7 +68,6 @@
         "drupal/color": "self.version",
         "drupal/comment": "self.version",
         "drupal/config": "self.version",
-        "drupal/config_environment": "self.version",
         "drupal/config_translation": "self.version",
         "drupal/contact": "self.version",
         "drupal/content_moderation": "self.version",
diff --git a/core/modules/config_environment/config_environment.info.yml b/core/modules/config_environment/config_environment.info.yml
deleted file mode 100644
index 441a64614077..000000000000
--- a/core/modules/config_environment/config_environment.info.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-name: 'Configuration Environment'
-type: module
-description: 'Allows administrators to manage configuration environments.'
-package: Core (Experimental)
-version: VERSION
-dependencies:
-  - drupal:config
diff --git a/core/modules/config_environment/config_environment.module b/core/modules/config_environment/config_environment.module
deleted file mode 100644
index b54b3dc632f1..000000000000
--- a/core/modules/config_environment/config_environment.module
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-/**
- * @file
- * Allows site administrators to modify environment configuration.
- */
-
-use Drupal\Core\Routing\RouteMatchInterface;
-
-/**
- * Implements hook_help().
- */
-function config_environment_help($route_name, RouteMatchInterface $route_match) {
-  switch ($route_name) {
-    case 'help.page.config_environment':
-      $output = '';
-      $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Configuration Environment module provides a mechanism for handling configuration changes between different environments. For more information, see the <a href=":config_environment">online documentation for the Configuration Environment module</a>.', [':config_environment' => 'https://www.drupal.org/node/3047873']) . '</p>';
-      return $output;
-  }
-}
-- 
GitLab