diff --git a/core/composer.json b/core/composer.json index 4b421fba6abe..aa9267ed4857 100644 --- a/core/composer.json +++ b/core/composer.json @@ -85,6 +85,7 @@ "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 new file mode 100644 index 000000000000..bf3dee24855f --- /dev/null +++ b/core/modules/config_environment/config_environment.info.yml @@ -0,0 +1,8 @@ +name: 'Configuration Environment' +type: module +description: 'Allows administrators to manage configuration environments.' +package: Core (Experimental) +version: VERSION +core: 8.x +dependencies: + - drupal:config diff --git a/core/modules/config_environment/config_environment.module b/core/modules/config_environment/config_environment.module new file mode 100644 index 000000000000..b54b3dc632f1 --- /dev/null +++ b/core/modules/config_environment/config_environment.module @@ -0,0 +1,21 @@ +' . t('About') . ''; + $output .= '

' . t('The Configuration Environment module provides a mechanism for handling configuration changes between different environments. For more information, see the online documentation for the Configuration Environment module.', [':config_environment' => 'https://www.drupal.org/node/3047873']) . '

'; + return $output; + } +}