diff --git a/core/core.services.yml b/core/core.services.yml index b093d4bfac954e1df890dcda0a89fde2e182d829..fee9101701ce33a46a3f68e63eba093b4c48fa28 100644 --- a/core/core.services.yml +++ b/core/core.services.yml @@ -1623,6 +1623,7 @@ services: arguments: ['@library.discovery', '@library.dependency_resolver', '@module_handler', '@theme.manager', '@language_manager', '@cache.data'] info_parser: class: Drupal\Core\Extension\InfoParser + arguments: ['@app.root'] twig: class: Drupal\Core\Template\TwigEnvironment arguments: ['@app.root', '@cache.default', '%twig_extension_hash%', '@state', '@twig.loader', '%twig.config%'] diff --git a/core/lib/Drupal/Core/Command/InstallCommand.php b/core/lib/Drupal/Core/Command/InstallCommand.php index bff4bc471df1d4bf63cbaea0806ee19c7ac18de4..839eb95fdba39887a5a1852fe24f07aa87a4525a 100644 --- a/core/lib/Drupal/Core/Command/InstallCommand.php +++ b/core/lib/Drupal/Core/Command/InstallCommand.php @@ -314,7 +314,7 @@ protected function getProfiles($include_hidden = FALSE, $auto_select_distributio $listing = new ExtensionDiscovery(getcwd(), FALSE); $listing->setProfileDirectories([]); $profiles = []; - $info_parser = new InfoParserDynamic(); + $info_parser = new InfoParserDynamic(getcwd()); foreach ($listing->scan('profile') as $profile) { $details = $info_parser->parse($profile->getPathname()); // Don't show hidden profiles. diff --git a/core/lib/Drupal/Core/Extension/InfoParserDynamic.php b/core/lib/Drupal/Core/Extension/InfoParserDynamic.php index c5d74b20cb10062eaa6a2c6baa384fa7a4c641e2..73acd845afa291d68f8bb4896406ee73b8e70363 100644 --- a/core/lib/Drupal/Core/Extension/InfoParserDynamic.php +++ b/core/lib/Drupal/Core/Extension/InfoParserDynamic.php @@ -11,11 +11,33 @@ */ class InfoParserDynamic implements InfoParserInterface { + /** + * The root directory of the Drupal installation. + * + * @var string + */ + protected $root; + /** * The earliest Drupal version that supports the 'core_version_requirement'. */ const FIRST_CORE_VERSION_REQUIREMENT_SUPPORTED_VERSION = '8.7.7'; + /** + * InfoParserDynamic constructor. + * + * @param string|null $app_root + * The root directory of the Drupal installation. + */ + public function __construct(string $app_root = NULL) { + if ($app_root === NULL) { + // @todo https://www.drupal.org/project/drupal/issues/3087975 Require + // $app_root argument. + \Drupal::hasService('app.root') ? (string) \Drupal::service('app.root') : DRUPAL_ROOT; + } + $this->root = $app_root; + } + /** * {@inheritdoc} */ @@ -34,13 +56,17 @@ public function parse($filename) { if (!empty($missing_keys)) { throw new InfoParserException('Missing required keys (' . implode(', ', $missing_keys) . ') in ' . $filename); } - if ($parsed_info['type'] === 'profile' && isset($parsed_info['core_version_requirement'])) { - // @todo Support the 'core_version_requirement' key in profiles in - // https://www.drupal.org/node/3070401. - throw new InfoParserException("The 'core_version_requirement' key is not supported in profiles in $filename"); - } if (!isset($parsed_info['core']) && !isset($parsed_info['core_version_requirement'])) { - throw new InfoParserException("The 'core' or the 'core_version_requirement' key must be present in " . $filename); + if (strpos($filename, 'core/') === 0 || strpos($filename, $this->root . '/core/') === 0) { + // Core extensions do not need to specify core compatibility: they are + // by definition compatible so a sensible default is used. Core + // modules are allowed to provide these for testing purposes. + $parsed_info['core_version_requirement'] = \Drupal::VERSION; + } + else { + // Non-core extensions must specify core compatibility. + throw new InfoParserException("The 'core' or the 'core_version_requirement' key must be present in " . $filename); + } } if (isset($parsed_info['core']) && !preg_match("/^\d\.x$/", $parsed_info['core'])) { throw new InfoParserException("Invalid 'core' value \"{$parsed_info['core']}\" in " . $filename); diff --git a/core/modules/action/action.info.yml b/core/modules/action/action.info.yml index 7559efbcb2971d0614606538d6335b5b77f7193f..118cda1278e9a6b584b3a48190ff61314f04b2b2 100644 --- a/core/modules/action/action.info.yml +++ b/core/modules/action/action.info.yml @@ -3,5 +3,4 @@ type: module description: 'Perform tasks on specific events triggered within the system.' package: Core version: VERSION -core: 8.x configure: entity.action.collection diff --git a/core/modules/action/tests/action_form_ajax_test/action_form_ajax_test.info.yml b/core/modules/action/tests/action_form_ajax_test/action_form_ajax_test.info.yml index 020e9ef45d5ec39ddd8ac6f70bb2d80ba117a879..2a56f7d1766543022aa7a029c34d4aaab06feb9c 100644 --- a/core/modules/action/tests/action_form_ajax_test/action_form_ajax_test.info.yml +++ b/core/modules/action/tests/action_form_ajax_test/action_form_ajax_test.info.yml @@ -3,5 +3,4 @@ type: module description: 'module used for testing ajax in action config entity forms.' package: Core version: VERSION -core: 8.x hidden: true diff --git a/core/modules/aggregator/aggregator.info.yml b/core/modules/aggregator/aggregator.info.yml index d6ffbaa85b757bfd009188988e5b2a3dc8ef5096..335949f6e758d3f4e7f0c651b77dbc747bf4f686 100644 --- a/core/modules/aggregator/aggregator.info.yml +++ b/core/modules/aggregator/aggregator.info.yml @@ -3,7 +3,6 @@ type: module description: 'Aggregates syndicated content (RSS, RDF, and Atom feeds) from external sources.' package: Core version: VERSION -core: 8.x configure: aggregator.admin_settings dependencies: - drupal:file diff --git a/core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.info.yml b/core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.info.yml index 3d3d0e932aa53ac9470a3cc289ceae1374c6d988..8e40e87908fff7c723c1eea8cfa154b75a98f310 100644 --- a/core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.info.yml +++ b/core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for aggregator related testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/aggregator/tests/modules/aggregator_test_views/aggregator_test_views.info.yml b/core/modules/aggregator/tests/modules/aggregator_test_views/aggregator_test_views.info.yml index 5d016a4076cbaa31967cc197572d25886a7a8cbe..c9d1a998d6d2717430d0719495e6121e8eed2b66 100644 --- a/core/modules/aggregator/tests/modules/aggregator_test_views/aggregator_test_views.info.yml +++ b/core/modules/aggregator/tests/modules/aggregator_test_views/aggregator_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views aggregator tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:aggregator - drupal:views diff --git a/core/modules/automated_cron/automated_cron.info.yml b/core/modules/automated_cron/automated_cron.info.yml index dd947279c612e917a07901f1c63b36ad7dfab85a..07f97f39f7a29093d7e47ab10059bde14e58e6f6 100644 --- a/core/modules/automated_cron/automated_cron.info.yml +++ b/core/modules/automated_cron/automated_cron.info.yml @@ -3,5 +3,4 @@ type: module description: 'Provides an automated way to run cron jobs, by executing them at the end of a server response.' package: Core version: VERSION -core: 8.x configure: system.cron_settings diff --git a/core/modules/ban/ban.info.yml b/core/modules/ban/ban.info.yml index ba6300de1c20a284849cd67e853289a8598a0a53..6f38a00a7ddd20fd49296f2910afabc842c0e7d8 100644 --- a/core/modules/ban/ban.info.yml +++ b/core/modules/ban/ban.info.yml @@ -3,5 +3,4 @@ type: module description: 'Enables banning of IP addresses.' package: Core version: VERSION -core: 8.x configure: ban.admin_page diff --git a/core/modules/basic_auth/basic_auth.info.yml b/core/modules/basic_auth/basic_auth.info.yml index f1ddb67c523a0d3c0f49a0013978d66e093a7e1a..1a9b88c8817aae7866c1fc443de14239871c5b44 100644 --- a/core/modules/basic_auth/basic_auth.info.yml +++ b/core/modules/basic_auth/basic_auth.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides the HTTP Basic authentication provider' package: Web services version: VERSION -core: 8.x dependencies: - drupal:user diff --git a/core/modules/basic_auth/tests/modules/basic_auth_test/basic_auth_test.info.yml b/core/modules/basic_auth/tests/modules/basic_auth_test/basic_auth_test.info.yml index 4244c4c5a924e7c3ac4c45071f9464c3d7247acc..3564a621088c3dfe53b43d5299c5ab40bc7a896f 100644 --- a/core/modules/basic_auth/tests/modules/basic_auth_test/basic_auth_test.info.yml +++ b/core/modules/basic_auth/tests/modules/basic_auth_test/basic_auth_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for HTTP Basic Authentication testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/big_pipe/big_pipe.info.yml b/core/modules/big_pipe/big_pipe.info.yml index 35c301538369a03d9163a3743ae4edb20f0f2814..5a5695c2968b1f97aa747f68dfca9b3cea453831 100644 --- a/core/modules/big_pipe/big_pipe.info.yml +++ b/core/modules/big_pipe/big_pipe.info.yml @@ -3,4 +3,3 @@ type: module description: 'Sends pages using the BigPipe technique that allows browsers to show them much faster.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/big_pipe/tests/modules/big_pipe_regression_test/big_pipe_regression_test.info.yml b/core/modules/big_pipe/tests/modules/big_pipe_regression_test/big_pipe_regression_test.info.yml index d8b9a35363b35bdfe7590e305bc80b370bd022d7..fb91d8eecd7481718c38b6941bb35075943defe3 100644 --- a/core/modules/big_pipe/tests/modules/big_pipe_regression_test/big_pipe_regression_test.info.yml +++ b/core/modules/big_pipe/tests/modules/big_pipe_regression_test/big_pipe_regression_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for BigPipe regression testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/big_pipe/tests/modules/big_pipe_test/big_pipe_test.info.yml b/core/modules/big_pipe/tests/modules/big_pipe_test/big_pipe_test.info.yml index 46ed28d7bb63722bf6555a63d041ae01706d3967..6cd09f9f1d6496b10a64a02e0f3d8254f0dadd79 100644 --- a/core/modules/big_pipe/tests/modules/big_pipe_test/big_pipe_test.info.yml +++ b/core/modules/big_pipe/tests/modules/big_pipe_test/big_pipe_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for BigPipe testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/big_pipe/tests/themes/big_pipe_test_theme/big_pipe_test_theme.info.yml b/core/modules/big_pipe/tests/themes/big_pipe_test_theme/big_pipe_test_theme.info.yml index 6e32b916607a64c6f8704172d7214420624a0052..7728013a039e9d2a48142da6e1f24652a9ffa49d 100644 --- a/core/modules/big_pipe/tests/themes/big_pipe_test_theme/big_pipe_test_theme.info.yml +++ b/core/modules/big_pipe/tests/themes/big_pipe_test_theme/big_pipe_test_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Theme for testing BigPipe edge cases.' version: VERSION -core: 8.x diff --git a/core/modules/block/block.info.yml b/core/modules/block/block.info.yml index 47501efb17f335e12507f8f018f4fca20807ed23..3e5cb7efd5e906f0111b73b18904da17756d0fdd 100644 --- a/core/modules/block/block.info.yml +++ b/core/modules/block/block.info.yml @@ -3,5 +3,4 @@ type: module description: 'Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.' package: Core version: VERSION -core: 8.x configure: block.admin_display diff --git a/core/modules/block/tests/modules/block_test/block_test.info.yml b/core/modules/block/tests/modules/block_test/block_test.info.yml index 93778adf3cf147e426eb1b52ad9328fc54d04757..064b64b9ad303facf4e02d0a5813d5d47512db47 100644 --- a/core/modules/block/tests/modules/block_test/block_test.info.yml +++ b/core/modules/block/tests/modules/block_test/block_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test blocks.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:block diff --git a/core/modules/block/tests/modules/block_test/themes/block_test_specialchars_theme/block_test_specialchars_theme.info.yml b/core/modules/block/tests/modules/block_test/themes/block_test_specialchars_theme/block_test_specialchars_theme.info.yml index f6ce665a3c949b97011a0be502629e16ae03d33a..ebfd83f93e448fcf65c5d1f85151ffe7f3e5306f 100644 --- a/core/modules/block/tests/modules/block_test/themes/block_test_specialchars_theme/block_test_specialchars_theme.info.yml +++ b/core/modules/block/tests/modules/block_test/themes/block_test_specialchars_theme/block_test_specialchars_theme.info.yml @@ -2,7 +2,6 @@ name: '<"Cat" & ''Mouse''>' type: theme base theme: stable description: 'Theme for testing special characters in block admin.' -core: 8.x regions: content: Content help: Help diff --git a/core/modules/block/tests/modules/block_test/themes/block_test_theme/block_test_theme.info.yml b/core/modules/block/tests/modules/block_test/themes/block_test_theme/block_test_theme.info.yml index a3f3fab8df18d9cb4d886f32284ca96947efb3ac..db2e017adbb95a67ed566e46642a64fb74d01b0a 100644 --- a/core/modules/block/tests/modules/block_test/themes/block_test_theme/block_test_theme.info.yml +++ b/core/modules/block/tests/modules/block_test/themes/block_test_theme/block_test_theme.info.yml @@ -3,7 +3,6 @@ type: theme base theme: stable description: 'Theme for testing the block system' version: VERSION -core: 8.x regions: sidebar_first: 'Left sidebar' sidebar_second: 'Right sidebar' diff --git a/core/modules/block/tests/modules/block_test_views/block_test_views.info.yml b/core/modules/block/tests/modules/block_test_views/block_test_views.info.yml index b995c00b9097a1fbd643d538a5a99bb3de40bc4e..a3623427f9ca36a5bf208d62b6b969c79a48e83d 100644 --- a/core/modules/block/tests/modules/block_test_views/block_test_views.info.yml +++ b/core/modules/block/tests/modules/block_test_views/block_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a view and block to test block displays in views.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:block - drupal:views diff --git a/core/modules/block_content/block_content.info.yml b/core/modules/block_content/block_content.info.yml index 3315a2738e041d2d7611579bbeb3dbc47077c2c0..db782c54995a4f9c803d8ad8e4aee65cae0a4ce8 100644 --- a/core/modules/block_content/block_content.info.yml +++ b/core/modules/block_content/block_content.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows the creation of custom blocks through the user interface.' package: Core version: VERSION -core: 8.x dependencies: - drupal:block - drupal:text diff --git a/core/modules/block_content/tests/modules/block_content_test/block_content_test.info.yml b/core/modules/block_content/tests/modules/block_content_test/block_content_test.info.yml index 21d755608c679477091cae8e57521443e489b096..cc7500eb205473ddf562ffb5350654dcecf016f1 100644 --- a/core/modules/block_content/tests/modules/block_content_test/block_content_test.info.yml +++ b/core/modules/block_content/tests/modules/block_content_test/block_content_test.info.yml @@ -3,6 +3,5 @@ type: module description: "Support module for custom block related testing." package: Testing version: VERSION -core: 8.x dependencies: - drupal:block_content diff --git a/core/modules/block_content/tests/modules/block_content_test_views/block_content_test_views.info.yml b/core/modules/block_content/tests/modules/block_content_test_views/block_content_test_views.info.yml index fb3dd01c5400788561044900ae982f30032d41cc..9ecd3561257cc8d6bc1fc864fdb43d21612a7239 100644 --- a/core/modules/block_content/tests/modules/block_content_test_views/block_content_test_views.info.yml +++ b/core/modules/block_content/tests/modules/block_content_test_views/block_content_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views block_content tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:block_content - drupal:views diff --git a/core/modules/block_place/block_place.info.yml b/core/modules/block_place/block_place.info.yml index fb5b83a91f20cc0281a10f4d30f995925fdf8d93..5d4bd18b078881f8c102e3f68f456d379e2069a5 100644 --- a/core/modules/block_place/block_place.info.yml +++ b/core/modules/block_place/block_place.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allow administrators to place blocks from any Drupal page' package: Core (Experimental) version: VERSION -core: 8.x hidden: true dependencies: - drupal:block diff --git a/core/modules/book/book.info.yml b/core/modules/book/book.info.yml index d883cc6eadf19461b196fc82285cb3c57fdad8dd..f5b383c051bd5aff9f3c38f1742e2098c469a5c2 100644 --- a/core/modules/book/book.info.yml +++ b/core/modules/book/book.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows users to create and organize related content in an outline.' package: Core version: VERSION -core: 8.x dependencies: - drupal:node configure: book.settings diff --git a/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml index 192fb7198d0555f0d63bd5ea98c384f66461cd07..c80920d8bec6ff6c39c3341c25eac7856c6a6879 100644 --- a/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml +++ b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for book module breadcrumb testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/book/tests/modules/book_test/book_test.info.yml b/core/modules/book/tests/modules/book_test/book_test.info.yml index 33001479558ee819b9e5047dff6063f0d5a5fc2d..5078cbd9e750714c42fcf1e318db90aaedb2d3d3 100644 --- a/core/modules/book/tests/modules/book_test/book_test.info.yml +++ b/core/modules/book/tests/modules/book_test/book_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for book module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/book/tests/modules/book_test_views/book_test_views.info.yml b/core/modules/book/tests/modules/book_test_views/book_test_views.info.yml index efc38b43e3d3be7a2f8b4154bb3644f940ab00a0..b7fbcd4d1dcb137b824226b8116031a69c7555de 100644 --- a/core/modules/book/tests/modules/book_test_views/book_test_views.info.yml +++ b/core/modules/book/tests/modules/book_test_views/book_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views book tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:book - drupal:views diff --git a/core/modules/breakpoint/breakpoint.info.yml b/core/modules/breakpoint/breakpoint.info.yml index 256740c02f42a72fac86cc1330e62e2e7cfb4710..659986612f7f416ae789bd40d5ba4ea4ab685768 100644 --- a/core/modules/breakpoint/breakpoint.info.yml +++ b/core/modules/breakpoint/breakpoint.info.yml @@ -3,4 +3,3 @@ type: module description: 'Manage breakpoints and breakpoint groups for responsive designs.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/breakpoint/tests/modules/breakpoint_module_test/breakpoint_module_test.info.yml b/core/modules/breakpoint/tests/modules/breakpoint_module_test/breakpoint_module_test.info.yml index 06cffa605cd7d6501a536fdaf6f04cbfcfe8e95d..09d849dc12409f62e362fff142e167ec0c96aaae 100644 --- a/core/modules/breakpoint/tests/modules/breakpoint_module_test/breakpoint_module_test.info.yml +++ b/core/modules/breakpoint/tests/modules/breakpoint_module_test/breakpoint_module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test module for breakpoint.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/breakpoint/tests/themes/breakpoint_theme_test/breakpoint_theme_test.info.yml b/core/modules/breakpoint/tests/themes/breakpoint_theme_test/breakpoint_theme_test.info.yml index 482faf5c634bc4de1b8d2485d56781de90f6afc5..97f142d4047d9e348f5d538ab2609f16be2fabb7 100644 --- a/core/modules/breakpoint/tests/themes/breakpoint_theme_test/breakpoint_theme_test.info.yml +++ b/core/modules/breakpoint/tests/themes/breakpoint_theme_test/breakpoint_theme_test.info.yml @@ -2,5 +2,4 @@ name: 'Breakpoint test theme' type: theme description: 'Test theme for breakpoint.' version: VERSION -core: 8.x base theme: bartik diff --git a/core/modules/ckeditor/ckeditor.info.yml b/core/modules/ckeditor/ckeditor.info.yml index 73ca3e3c1dce86d95f9e24be710aeebcea168852..f915250a81f04e6f5963dc502aabfdb2be64bd7b 100644 --- a/core/modules/ckeditor/ckeditor.info.yml +++ b/core/modules/ckeditor/ckeditor.info.yml @@ -2,7 +2,6 @@ name: CKEditor type: module description: "WYSIWYG editing for rich text fields using CKEditor." package: Core -core: 8.x version: VERSION dependencies: - drupal:editor diff --git a/core/modules/ckeditor/tests/modules/ckeditor_test.info.yml b/core/modules/ckeditor/tests/modules/ckeditor_test.info.yml index d7d5450ee370e8111d0268f62e64b9e2fb4fbebe..6ab5b9aea699dda56aabc6fb736955d17b8f66b2 100644 --- a/core/modules/ckeditor/tests/modules/ckeditor_test.info.yml +++ b/core/modules/ckeditor/tests/modules/ckeditor_test.info.yml @@ -1,6 +1,5 @@ name: CKEditor test type: module description: Support module for the CKEditor module tests. -core: 8.x package: Testing version: VERSION diff --git a/core/modules/color/color.info.yml b/core/modules/color/color.info.yml index 9ea6daf6b5e6d9fa22b50cd6a15f14a2fc43a0d4..7532efce7b225020ec2ae6f1ea1966a0ed5d439e 100644 --- a/core/modules/color/color.info.yml +++ b/core/modules/color/color.info.yml @@ -3,4 +3,3 @@ type: module description: 'Allows administrators to change the color scheme of compatible themes.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/color/tests/modules/color_test/color_test.info.yml b/core/modules/color/tests/modules/color_test/color_test.info.yml index 05d954ff6be76defd291cf06964c4c95be1b158d..7b5f279a9eb08630c25255c332efdf3e77af94ab 100644 --- a/core/modules/color/tests/modules/color_test/color_test.info.yml +++ b/core/modules/color/tests/modules/color_test/color_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test helpers for color module.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/color/tests/modules/color_test/themes/color_test_theme/color_test_theme.info.yml b/core/modules/color/tests/modules/color_test/themes/color_test_theme/color_test_theme.info.yml index fd68bd8a825cf1ca7e83d219a82bb2d195a75936..7c36682c47cb10664d5df77350b015fcaeb20492 100644 --- a/core/modules/color/tests/modules/color_test/themes/color_test_theme/color_test_theme.info.yml +++ b/core/modules/color/tests/modules/color_test/themes/color_test_theme/color_test_theme.info.yml @@ -3,6 +3,5 @@ type: theme base theme: stable description: 'Theme for testing the color module' version: VERSION -core: 8.x libraries: - color_test_theme/base diff --git a/core/modules/comment/comment.info.yml b/core/modules/comment/comment.info.yml index b552cf17bfa4be0074ad4ff4b1d2aeb17624442c..29be6494ea68d7c665bdfa7e7f4df5640d09c8cb 100644 --- a/core/modules/comment/comment.info.yml +++ b/core/modules/comment/comment.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows users to comment on and discuss published content.' package: Core version: VERSION -core: 8.x dependencies: - drupal:text configure: comment.admin diff --git a/core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.info.yml b/core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.info.yml index fc58fb73cbab07aed0154a774ff6484a20c3cf10..5b67d2f398152610036a7002686da56391ccd50e 100644 --- a/core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.info.yml +++ b/core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing empty title accessibility with Comment module.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:comment diff --git a/core/modules/comment/tests/modules/comment_test/comment_test.info.yml b/core/modules/comment/tests/modules/comment_test/comment_test.info.yml index 1a58f742a34c777d32b12840cdbf50757e30b5a2..70879457cc90f131956d7fb33b571f1d7e7ee94f 100644 --- a/core/modules/comment/tests/modules/comment_test/comment_test.info.yml +++ b/core/modules/comment/tests/modules/comment_test/comment_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for Comment module testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:comment diff --git a/core/modules/comment/tests/modules/comment_test_views/comment_test_views.info.yml b/core/modules/comment/tests/modules/comment_test_views/comment_test_views.info.yml index deca97637d60107bcd381178c4f5f431da9439f7..c63e987b28bc394a65b49f74e40662d727127b06 100644 --- a/core/modules/comment/tests/modules/comment_test_views/comment_test_views.info.yml +++ b/core/modules/comment/tests/modules/comment_test_views/comment_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views comment tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:comment - drupal:views diff --git a/core/modules/config/config.info.yml b/core/modules/config/config.info.yml index 88821cea25f91c918060a1356aac84e067543dbe..728120fc5e51c9bd205a5023eca30040b7c4b774 100644 --- a/core/modules/config/config.info.yml +++ b/core/modules/config/config.info.yml @@ -3,5 +3,4 @@ type: module description: 'Allows administrators to manage configuration changes.' package: Core version: VERSION -core: 8.x configure: config.sync diff --git a/core/modules/config/tests/config_clash_test_theme/config_clash_test_theme.info.yml b/core/modules/config/tests/config_clash_test_theme/config_clash_test_theme.info.yml index 2ff354d6a9f5cbd765cf43aacf30a6489bd195af..27542f084a24ebabac1d8e67f01ebd85b59769d9 100644 --- a/core/modules/config/tests/config_clash_test_theme/config_clash_test_theme.info.yml +++ b/core/modules/config/tests/config_clash_test_theme/config_clash_test_theme.info.yml @@ -3,7 +3,6 @@ type: theme description: 'Test theme for configuration clash detection' version: VERSION base theme: classy -core: 8.x regions: content: Content left: Left diff --git a/core/modules/config/tests/config_collection_clash_install_test/config_collection_clash_install_test.info.yml b/core/modules/config/tests/config_collection_clash_install_test/config_collection_clash_install_test.info.yml index 0b33ad24dfa61fe67d7caa061d09fb2704e72e3a..89314e5ec4a79ec565f95f4ce1fc469a9f36423c 100644 --- a/core/modules/config/tests/config_collection_clash_install_test/config_collection_clash_install_test.info.yml +++ b/core/modules/config/tests/config_collection_clash_install_test/config_collection_clash_install_test.info.yml @@ -4,6 +4,5 @@ name: 'Config collection clash test module' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_collection_install_test diff --git a/core/modules/config/tests/config_collection_install_test/config_collection_install_test.info.yml b/core/modules/config/tests/config_collection_install_test/config_collection_install_test.info.yml index 95c6799f007770e83797ed450e0bc307d85d48fd..ba85dc482e73219db7ec6a9351b69db836b4598b 100644 --- a/core/modules/config/tests/config_collection_install_test/config_collection_install_test.info.yml +++ b/core/modules/config/tests/config_collection_install_test/config_collection_install_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration events test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.info.yml b/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.info.yml index 561d537d04835bed5b876209ff77b781444364c9..242572de26f3343dc6a86a818f41db05d73b6383 100644 --- a/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.info.yml +++ b/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration entity static cache test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_events_test/config_events_test.info.yml b/core/modules/config/tests/config_events_test/config_events_test.info.yml index 95c6799f007770e83797ed450e0bc307d85d48fd..ba85dc482e73219db7ec6a9351b69db836b4598b 100644 --- a/core/modules/config/tests/config_events_test/config_events_test.info.yml +++ b/core/modules/config/tests/config_events_test/config_events_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration events test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_exclude_test/config_exclude_test.info.yml b/core/modules/config/tests/config_exclude_test/config_exclude_test.info.yml index b84feef93aa34a9a96f275eff8dd9072cd5ce963..4eb9918be8485abbe1b94314aa87b811f847955c 100644 --- a/core/modules/config/tests/config_exclude_test/config_exclude_test.info.yml +++ b/core/modules/config/tests/config_exclude_test/config_exclude_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration Module Exclude Test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_import_test/config_import_test.info.yml b/core/modules/config/tests/config_import_test/config_import_test.info.yml index 01d2d1db3fa0a9de9aaf8e0ed39833b9fb656b22..70560bbca93f140ad4ff74187f0250257facf642 100644 --- a/core/modules/config/tests/config_import_test/config_import_test.info.yml +++ b/core/modules/config/tests/config_import_test/config_import_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration import test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_install_dependency_test/config_install_dependency_test.info.yml b/core/modules/config/tests/config_install_dependency_test/config_install_dependency_test.info.yml index e9b3c724562a31125b9434efc28f065510a7e9cb..d27aa6b7799ca78c2f71b02ecc8af4b79efdd45f 100644 --- a/core/modules/config/tests/config_install_dependency_test/config_install_dependency_test.info.yml +++ b/core/modules/config/tests/config_install_dependency_test/config_install_dependency_test.info.yml @@ -2,4 +2,3 @@ name: 'Config install dependency test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_install_double_dependency_test/config_install_double_dependency_test.info.yml b/core/modules/config/tests/config_install_double_dependency_test/config_install_double_dependency_test.info.yml index 99404cf12b929d11cb1e146adc75adaa5f214891..1314d36659bddac6b195992416b3998df2bb2fc5 100644 --- a/core/modules/config/tests/config_install_double_dependency_test/config_install_double_dependency_test.info.yml +++ b/core/modules/config/tests/config_install_double_dependency_test/config_install_double_dependency_test.info.yml @@ -2,4 +2,3 @@ name: 'Config install double dependency test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_install_fail_test/config_install_fail_test.info.yml b/core/modules/config/tests/config_install_fail_test/config_install_fail_test.info.yml index 00e0453833584d1b75eccea4512c4ad4909f8b47..3781a6b47bd942e43bac877b3d2bc06be9bb1354 100644 --- a/core/modules/config/tests/config_install_fail_test/config_install_fail_test.info.yml +++ b/core/modules/config/tests/config_install_fail_test/config_install_fail_test.info.yml @@ -2,6 +2,5 @@ name: 'Configuration install fail test' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_test diff --git a/core/modules/config/tests/config_integration_test/config_integration_test.info.yml b/core/modules/config/tests/config_integration_test/config_integration_test.info.yml index ab2cb60a778904ce087078c13d371b02564cd81e..4180cff1706cef5b61a8895863bbdf01103cf3bf 100644 --- a/core/modules/config/tests/config_integration_test/config_integration_test.info.yml +++ b/core/modules/config/tests/config_integration_test/config_integration_test.info.yml @@ -2,6 +2,5 @@ name: 'ConfigTest integration' type: module package: 'Testing' version: VERSION -core: 8.x dependencies: - drupal:config_test diff --git a/core/modules/config/tests/config_other_module_config_test/config_other_module_config_test.info.yml b/core/modules/config/tests/config_other_module_config_test/config_other_module_config_test.info.yml index 0c332c24d097071c8043cd46aef59719bf4aa05e..00737d7dbeed50e0a3581fd3fbbfc2bc91c86677 100644 --- a/core/modules/config/tests/config_other_module_config_test/config_other_module_config_test.info.yml +++ b/core/modules/config/tests/config_other_module_config_test/config_other_module_config_test.info.yml @@ -2,4 +2,3 @@ name: 'Config other module config' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_override_integration_test/config_override_integration_test.info.yml b/core/modules/config/tests/config_override_integration_test/config_override_integration_test.info.yml index f59da1e1365437e9494076b3dcec62c1d7e6fe61..a7bce37b5621f80f5ee99cfebd8b67e098ae1e29 100644 --- a/core/modules/config/tests/config_override_integration_test/config_override_integration_test.info.yml +++ b/core/modules/config/tests/config_override_integration_test/config_override_integration_test.info.yml @@ -2,8 +2,6 @@ name: 'Configuration override integration test' type: module package: Testing version: VERSION -core: 8.x - dependencies: - drupal:block - drupal:block_test diff --git a/core/modules/config/tests/config_override_test/config_override_test.info.yml b/core/modules/config/tests/config_override_test/config_override_test.info.yml index 5bad4e60ecad969d1b9cda2d14dc970227b2ed45..3afe0378ea50a43558cca527c5f2b17d44702897 100644 --- a/core/modules/config/tests/config_override_test/config_override_test.info.yml +++ b/core/modules/config/tests/config_override_test/config_override_test.info.yml @@ -2,8 +2,6 @@ name: 'Configuration override test' type: module package: Testing version: VERSION -core: 8.x - dependencies: - drupal:block - drupal:block_content diff --git a/core/modules/config/tests/config_schema_test/config_schema_test.info.yml b/core/modules/config/tests/config_schema_test/config_schema_test.info.yml index 9836e8b59b828253f07979f181a24ab87dd5755f..c10d7dc078bf287ff86ab5d880e355b30125b934 100644 --- a/core/modules/config/tests/config_schema_test/config_schema_test.info.yml +++ b/core/modules/config/tests/config_schema_test/config_schema_test.info.yml @@ -2,5 +2,4 @@ name: 'Configuration schema test' type: module package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/config/tests/config_test/config_test.info.yml b/core/modules/config/tests/config_test/config_test.info.yml index a4d7b0c48f5035b35884e0467b90c861b2049b99..a84c17b9a2f0308e2d26f286a2524750d5688875 100644 --- a/core/modules/config/tests/config_test/config_test.info.yml +++ b/core/modules/config/tests/config_test/config_test.info.yml @@ -2,4 +2,3 @@ name: 'Configuration test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/config/tests/config_test_id_mismatch/config_test_id_mismatch.info.yml b/core/modules/config/tests/config_test_id_mismatch/config_test_id_mismatch.info.yml index 7cd2e0926a8e951051566d28005b298cfe15279c..9b2b0c5992e720b9d616df822bdfc8979ee5a1d8 100644 --- a/core/modules/config/tests/config_test_id_mismatch/config_test_id_mismatch.info.yml +++ b/core/modules/config/tests/config_test_id_mismatch/config_test_id_mismatch.info.yml @@ -2,6 +2,5 @@ name: 'Configuration test ID mismatch' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_test diff --git a/core/modules/config/tests/config_test_language/config_test_language.info.yml b/core/modules/config/tests/config_test_language/config_test_language.info.yml index d549e9817526b4fad3dc93626e1202800d483973..27f8ce37345b5021cc31a9606907bc74028addac 100644 --- a/core/modules/config/tests/config_test_language/config_test_language.info.yml +++ b/core/modules/config/tests/config_test_language/config_test_language.info.yml @@ -2,6 +2,5 @@ name: 'Configuration test languages' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_test diff --git a/core/modules/config/tests/config_transformer_test/config_transformer_test.info.yml b/core/modules/config/tests/config_transformer_test/config_transformer_test.info.yml index 6fb64de9e8051545cf4eee3f047cf1189dc91e1b..25dbe5a2197d55ba50db97bdf8a610f3ed415cad 100644 --- a/core/modules/config/tests/config_transformer_test/config_transformer_test.info.yml +++ b/core/modules/config/tests/config_transformer_test/config_transformer_test.info.yml @@ -2,6 +2,5 @@ name: 'Configuration Storage Transformer Test' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config diff --git a/core/modules/config_environment/config_environment.info.yml b/core/modules/config_environment/config_environment.info.yml index bf3dee24855fab47343a20b230b20384fc4e3e0a..441a64614077a3cca16b04f7f7bca9e744ab5434 100644 --- a/core/modules/config_environment/config_environment.info.yml +++ b/core/modules/config_environment/config_environment.info.yml @@ -3,6 +3,5 @@ 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_translation/config_translation.info.yml b/core/modules/config_translation/config_translation.info.yml index 904f57783e309198ded4c19020e6937a8c208b8e..879dd3b6c5f0d3e2edeacf237a3d16d912cea045 100644 --- a/core/modules/config_translation/config_translation.info.yml +++ b/core/modules/config_translation/config_translation.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a translation interface for configuration.' package: Multilingual version: VERSION -core: 8.x configure: config_translation.mapper_list dependencies: - drupal:locale diff --git a/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.info.yml b/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.info.yml index 9adf9fda2b5b7481172773cf215ab607f70f3812..66550512a157e4b350dc960df0d2d4cffd42fb1a 100644 --- a/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.info.yml +++ b/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.info.yml @@ -3,7 +3,6 @@ description: 'Helpers to test the configuration translation system' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_translation - drupal:config_test diff --git a/core/modules/config_translation/tests/themes/config_translation_test_theme/config_translation_test_theme.info.yml b/core/modules/config_translation/tests/themes/config_translation_test_theme/config_translation_test_theme.info.yml index a27ba76c2c68de6c726cb350c5b477dc047c89f5..fb7d54604f6842766f3c234308b2b98785ae35e2 100644 --- a/core/modules/config_translation/tests/themes/config_translation_test_theme/config_translation_test_theme.info.yml +++ b/core/modules/config_translation/tests/themes/config_translation_test_theme/config_translation_test_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Theme for testing the configuration translation mapper system' version: VERSION -core: 8.x diff --git a/core/modules/contact/contact.info.yml b/core/modules/contact/contact.info.yml index 2507fbd167c8fc36984ac7252e42e29c10e515a3..518d9c492667e7b7214914ca75bf6710f6cba704 100644 --- a/core/modules/contact/contact.info.yml +++ b/core/modules/contact/contact.info.yml @@ -3,5 +3,4 @@ type: module description: 'Enables the use of both personal and site-wide contact forms.' package: Core version: VERSION -core: 8.x configure: entity.contact_form.collection diff --git a/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.info.yml b/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.info.yml index aefb2fb2ffdeac98d1ef78ba756f6028e8998917..bde8a8bc06afc9714401448f1a2d29a6dc64346d 100644 --- a/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.info.yml +++ b/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Tests that contact messages can be stored.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:contact - drupal:user diff --git a/core/modules/contact/tests/modules/contact_test/contact_test.info.yml b/core/modules/contact/tests/modules/contact_test/contact_test.info.yml index 20331427c2583e72ad7a7005682dd724dbbb14b6..09fc2f2ecfe247a4bb19bd745db964fc36efbf43 100644 --- a/core/modules/contact/tests/modules/contact_test/contact_test.info.yml +++ b/core/modules/contact/tests/modules/contact_test/contact_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Contains test contact form.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:contact diff --git a/core/modules/contact/tests/modules/contact_test_views/contact_test_views.info.yml b/core/modules/contact/tests/modules/contact_test_views/contact_test_views.info.yml index 6460477bca1ecd53241caa73f497d1938f3c3341..94f413becb205a75040c82084c57795854034b70 100644 --- a/core/modules/contact/tests/modules/contact_test_views/contact_test_views.info.yml +++ b/core/modules/contact/tests/modules/contact_test_views/contact_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views contact tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:contact - drupal:views diff --git a/core/modules/content_moderation/content_moderation.info.yml b/core/modules/content_moderation/content_moderation.info.yml index 2472f470f3b1ecb21232377e84f78cd0402a24cb..fade31a5c1428d927930df966d48a0addd85b96a 100644 --- a/core/modules/content_moderation/content_moderation.info.yml +++ b/core/modules/content_moderation/content_moderation.info.yml @@ -2,7 +2,6 @@ name: 'Content Moderation' type: module description: 'Provides moderation states for content.' version: VERSION -core: 8.x package: Core configure: entity.workflow.collection dependencies: diff --git a/core/modules/content_moderation/tests/modules/content_moderation_test_local_task/content_moderation_test_local_task.info.yml b/core/modules/content_moderation/tests/modules/content_moderation_test_local_task/content_moderation_test_local_task.info.yml index bccb61c88fbab5969e1deed0cdc4b2f491495bb4..0dfcfb3e4924bfc02f323e328739477e2c0d0c9d 100644 --- a/core/modules/content_moderation/tests/modules/content_moderation_test_local_task/content_moderation_test_local_task.info.yml +++ b/core/modules/content_moderation/tests/modules/content_moderation_test_local_task/content_moderation_test_local_task.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a local task for testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:content_moderation - drupal:node diff --git a/core/modules/content_moderation/tests/modules/content_moderation_test_views/content_moderation_test_views.info.yml b/core/modules/content_moderation/tests/modules/content_moderation_test_views/content_moderation_test_views.info.yml index fcce26c82e7c5e1c6e31f825531bf8d14a0d7c44..75403572597e372e9b93f5a0f7cdbb3884e8e9db 100644 --- a/core/modules/content_moderation/tests/modules/content_moderation_test_views/content_moderation_test_views.info.yml +++ b/core/modules/content_moderation/tests/modules/content_moderation_test_views/content_moderation_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views Content moderation tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:content_moderation - drupal:node diff --git a/core/modules/content_translation/content_translation.info.yml b/core/modules/content_translation/content_translation.info.yml index 68d1ec0cb3238ff67ef1a83fc0c39058a00eb276..5d462bc3a7461fb6d16657d5a017bc909b3deaec 100644 --- a/core/modules/content_translation/content_translation.info.yml +++ b/core/modules/content_translation/content_translation.info.yml @@ -5,5 +5,4 @@ dependencies: - drupal:language package: Multilingual version: VERSION -core: 8.x configure: language.content_settings_page diff --git a/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.info.yml b/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.info.yml index d5982ae75c7399486229c3f0bf57c53aaac05a88..0f14e3999b09beb202b06df9fc982f4a88f3fdb8 100644 --- a/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.info.yml +++ b/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides content translation tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:content_translation - drupal:language diff --git a/core/modules/content_translation/tests/modules/content_translation_test_views/content_translation_test_views.info.yml b/core/modules/content_translation/tests/modules/content_translation_test_views/content_translation_test_views.info.yml index 008a1df4a7bf3ea08598147bca094651f5afc254..9be584cc5a93f1b87a744186c093b3f531ed6ce8 100644 --- a/core/modules/content_translation/tests/modules/content_translation_test_views/content_translation_test_views.info.yml +++ b/core/modules/content_translation/tests/modules/content_translation_test_views/content_translation_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views content translation tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:content_translation - drupal:views diff --git a/core/modules/contextual/contextual.info.yml b/core/modules/contextual/contextual.info.yml index 4e11bb966ba2c142e4c62ff772aa55bac02a6366..90cc3b85817310bc79fc6856c030b14ccdb00f86 100644 --- a/core/modules/contextual/contextual.info.yml +++ b/core/modules/contextual/contextual.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides contextual links to perform actions related to elements on a page.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/contextual/tests/modules/contextual_test/contextual_test.info.yml b/core/modules/contextual/tests/modules/contextual_test/contextual_test.info.yml index 4a519369b048d1d675c0c7593ae9bedc290c32a0..0c367f525eab67dfcd27ed293c53b685953ff590 100644 --- a/core/modules/contextual/tests/modules/contextual_test/contextual_test.info.yml +++ b/core/modules/contextual/tests/modules/contextual_test/contextual_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test contextual links.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:contextual diff --git a/core/modules/datetime/datetime.info.yml b/core/modules/datetime/datetime.info.yml index 884cafcd782e6c05ff7ce03a03f0c4646a945cfe..ffde8a970212f0dd738c3b417a9af83617693946 100644 --- a/core/modules/datetime/datetime.info.yml +++ b/core/modules/datetime/datetime.info.yml @@ -3,6 +3,5 @@ type: module description: Defines datetime form elements and a datetime field type. package: Field types version: VERSION -core: 8.x dependencies: - drupal:field diff --git a/core/modules/datetime/tests/modules/datetime_test/datetime_test.info.yml b/core/modules/datetime/tests/modules/datetime_test/datetime_test.info.yml index 665fd028f522f03109c8cd5f768ff44b339e0680..65e79ee44ecce83f3f0186ba575cf7f0aa5b1844 100644 --- a/core/modules/datetime/tests/modules/datetime_test/datetime_test.info.yml +++ b/core/modules/datetime/tests/modules/datetime_test/datetime_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides default views for tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/datetime_range/datetime_range.info.yml b/core/modules/datetime_range/datetime_range.info.yml index 69006d8e888063c2f14081cd118edc94a562661d..1d0596a7fb86c3b6a1f831adbfac36389651eec3 100644 --- a/core/modules/datetime_range/datetime_range.info.yml +++ b/core/modules/datetime_range/datetime_range.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides the ability to store end dates.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:datetime diff --git a/core/modules/datetime_range/tests/modules/datetime_range_test/datetime_range_test.info.yml b/core/modules/datetime_range/tests/modules/datetime_range_test/datetime_range_test.info.yml index 8e5bddee3448f107a0ad858c13651b960b53433a..b115bd8b34256b81d26441e5db080d70ff20c8e5 100644 --- a/core/modules/datetime_range/tests/modules/datetime_range_test/datetime_range_test.info.yml +++ b/core/modules/datetime_range/tests/modules/datetime_range_test/datetime_range_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides a testing module for datetime_range.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy diff --git a/core/modules/dblog/dblog.info.yml b/core/modules/dblog/dblog.info.yml index b214fb76c7890e32971488391dc04998fce89a32..abde7e3f1bb520e180007f5a8bf78ce15eb3a04f 100644 --- a/core/modules/dblog/dblog.info.yml +++ b/core/modules/dblog/dblog.info.yml @@ -3,5 +3,4 @@ type: module description: 'Logs and records system events to the database.' package: Core version: VERSION -core: 8.x configure: system.logging_settings diff --git a/core/modules/dblog/tests/modules/dblog_test_views/dblog_test_views.info.yml b/core/modules/dblog/tests/modules/dblog_test_views/dblog_test_views.info.yml index 9ac37c1858a844a214ec090ab9689494b04e52d7..3407da67238976dc32f9116ece08615f6829c3f3 100644 --- a/core/modules/dblog/tests/modules/dblog_test_views/dblog_test_views.info.yml +++ b/core/modules/dblog/tests/modules/dblog_test_views/dblog_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views dblog tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:dblog - drupal:views diff --git a/core/modules/dynamic_page_cache/dynamic_page_cache.info.yml b/core/modules/dynamic_page_cache/dynamic_page_cache.info.yml index 00db97de2c74008d6d0e7cf1a8eefe1d3d25be2c..ec950a4076e187ceb97a31f3eeb34715af35f298 100644 --- a/core/modules/dynamic_page_cache/dynamic_page_cache.info.yml +++ b/core/modules/dynamic_page_cache/dynamic_page_cache.info.yml @@ -3,4 +3,3 @@ type: module description: 'Caches pages for any user, handling dynamic content correctly.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/dynamic_page_cache/tests/dynamic_page_cache_test/dynamic_page_cache_test.info.yml b/core/modules/dynamic_page_cache/tests/dynamic_page_cache_test/dynamic_page_cache_test.info.yml index 7a57fd4b8700387f47c8ef89e53651673181df93..a07f856cfad338ddae64db30c05c4e49f23ff69d 100644 --- a/core/modules/dynamic_page_cache/tests/dynamic_page_cache_test/dynamic_page_cache_test.info.yml +++ b/core/modules/dynamic_page_cache/tests/dynamic_page_cache_test/dynamic_page_cache_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test routes/responses for Dynamic Page Cache.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/editor/editor.info.yml b/core/modules/editor/editor.info.yml index 745ab2f0a8ab8bea5fcabdcace577b49123762e3..bf90cc0d5ad188e05e31450221c52b74bf131e4e 100644 --- a/core/modules/editor/editor.info.yml +++ b/core/modules/editor/editor.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a means to associate text formats with text editor libraries such as WYSIWYGs or toolbars.' package: Core version: VERSION -core: 8.x dependencies: - drupal:filter - drupal:file diff --git a/core/modules/editor/tests/editor_private_test/editor_private_test.info.yml b/core/modules/editor/tests/editor_private_test/editor_private_test.info.yml index 97a3fe6dffcd8e5cd9342dee4cc0d8e5066962dd..cdd0ad29097153c69ed7c895e81e2310c0c4667d 100644 --- a/core/modules/editor/tests/editor_private_test/editor_private_test.info.yml +++ b/core/modules/editor/tests/editor_private_test/editor_private_test.info.yml @@ -1,7 +1,6 @@ name: 'Text Editor Private test' type: module description: 'Support module for the Text Editor Private module tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/editor/tests/modules/editor_test.info.yml b/core/modules/editor/tests/modules/editor_test.info.yml index 40b6ff07133ef25b60c291c02b5343739e6be5aa..9a95585400849d9687206bad1f558ebf41724e52 100644 --- a/core/modules/editor/tests/modules/editor_test.info.yml +++ b/core/modules/editor/tests/modules/editor_test.info.yml @@ -1,6 +1,5 @@ name: 'Text Editor test' type: module description: 'Support module for the Text Editor module tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/entity_reference/entity_reference.info.yml b/core/modules/entity_reference/entity_reference.info.yml index 50195b066351fa414f88f356736361fc30cfb38c..717ef213ecff9e0c20bc15258bda5c020d1253da 100644 --- a/core/modules/entity_reference/entity_reference.info.yml +++ b/core/modules/entity_reference/entity_reference.info.yml @@ -3,5 +3,4 @@ type: module description: 'Deprecated. All the functionality has been moved to Core.' package: Field types version: VERSION -core: 8.x hidden: true diff --git a/core/modules/field/field.info.yml b/core/modules/field/field.info.yml index 13b5da0054bf12fa9fb5c0641073704d41cc2884..2fba808f88ebeda1f3521fd7ab17921e3e70a71e 100644 --- a/core/modules/field/field.info.yml +++ b/core/modules/field/field.info.yml @@ -3,4 +3,3 @@ type: module description: 'Field API to add fields to entities like nodes and users.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/field/tests/modules/field_plugins_test/field_plugins_test.info.yml b/core/modules/field/tests/modules/field_plugins_test/field_plugins_test.info.yml index 156a3af6005c6fa619d13b80e323a32f23ee178e..95bc8c96a170f6bf31e154f921ba42843088cf52 100644 --- a/core/modules/field/tests/modules/field_plugins_test/field_plugins_test.info.yml +++ b/core/modules/field/tests/modules/field_plugins_test/field_plugins_test.info.yml @@ -1,7 +1,6 @@ name: 'Field Plugins Test' type: module description: 'Support module for the field and entity display tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field/tests/modules/field_test/field_test.info.yml b/core/modules/field/tests/modules/field_test/field_test.info.yml index d974cce969d10fd5825f38e12a51726fdd4fad58..75c4c3b92447bb40519d545771c76e4ff05e0d74 100644 --- a/core/modules/field/tests/modules/field_test/field_test.info.yml +++ b/core/modules/field/tests/modules/field_test/field_test.info.yml @@ -1,7 +1,6 @@ name: 'Field API Test' type: module description: 'Support module for the Field API tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.info.yml b/core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.info.yml index 06b9a42163891a4c5e2d2c768e90ac5e4bb69084..905e47069783a2612b1f7a19f391e432b9624571 100644 --- a/core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.info.yml +++ b/core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.info.yml @@ -1,7 +1,6 @@ name: 'Boolean field Test' type: module description: 'Support module for the field and entity display tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field/tests/modules/field_test_config/field_test_config.info.yml b/core/modules/field/tests/modules/field_test_config/field_test_config.info.yml index e3cb0e892af713b89befb3d34ac3b07f8a573357..64ac0a0903aaff5af9fa51e4ef46aa72b759d20b 100644 --- a/core/modules/field/tests/modules/field_test_config/field_test_config.info.yml +++ b/core/modules/field/tests/modules/field_test_config/field_test_config.info.yml @@ -1,6 +1,5 @@ name: 'Field API configuration tests' type: module description: 'Support module for the Field API configuration tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/field/tests/modules/field_test_views/field_test_views.info.yml b/core/modules/field/tests/modules/field_test_views/field_test_views.info.yml index ca2f0235157d633c524d0d6570331bb6d1ec2ac4..d801b446793ab3b8f792d736d1fa97e041a924ab 100644 --- a/core/modules/field/tests/modules/field_test_views/field_test_views.info.yml +++ b/core/modules/field/tests/modules/field_test_views/field_test_views.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides default views for views field tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/field/tests/modules/field_third_party_test/field_third_party_test.info.yml b/core/modules/field/tests/modules/field_third_party_test/field_third_party_test.info.yml index 47be1bffe81a13f4745a25936d2b52095e311369..3c73362aa27504ae4b43365997cefe4c1558cb8e 100644 --- a/core/modules/field/tests/modules/field_third_party_test/field_third_party_test.info.yml +++ b/core/modules/field/tests/modules/field_third_party_test/field_third_party_test.info.yml @@ -1,7 +1,6 @@ name: 'Field Third Party Settings Test' type: module description: 'Support module for the Field API tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml b/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml index 991068e4cf540ef1fdd56720af1e436e30ddc56d..6b8ed863d166402a625d578c83e6a672ed8fdd39 100644 --- a/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml +++ b/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml @@ -1,7 +1,6 @@ name: 'Field Timestamp Test' type: module description: 'Support module for the Timestamp field item test.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field_layout/field_layout.info.yml b/core/modules/field_layout/field_layout.info.yml index d5d704c7f35b4803180b4a5fb55bb77c6140fbf9..f4b676f25b7f6eeac256050bddb03920dad02d0c 100644 --- a/core/modules/field_layout/field_layout.info.yml +++ b/core/modules/field_layout/field_layout.info.yml @@ -3,6 +3,5 @@ type: module description: 'Allows users to configure the display and form display by arranging fields in several columns.' package: Core (Experimental) version: VERSION -core: 8.x dependencies: - drupal:layout_discovery diff --git a/core/modules/field_layout/tests/modules/field_layout_test/field_layout_test.info.yml b/core/modules/field_layout/tests/modules/field_layout_test/field_layout_test.info.yml index 4f63309b5e2531dd84e77d1cbed6ce1886c01917..47364228fdb3d254223de97b910eb0051e527120 100644 --- a/core/modules/field_layout/tests/modules/field_layout_test/field_layout_test.info.yml +++ b/core/modules/field_layout/tests/modules/field_layout_test/field_layout_test.info.yml @@ -1,7 +1,6 @@ name: 'Field Layout test' type: module description: 'Support module for Field Layout tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/field_ui/field_ui.info.yml b/core/modules/field_ui/field_ui.info.yml index 3d8126b4e4dc8504d968228eb956b6b4d7d5e5fa..3d4f51e5511a518ecba550d5c129b6aa782ebf07 100644 --- a/core/modules/field_ui/field_ui.info.yml +++ b/core/modules/field_ui/field_ui.info.yml @@ -3,6 +3,5 @@ type: module description: 'User interface for the Field API.' package: Core version: VERSION -core: 8.x dependencies: - drupal:field diff --git a/core/modules/field_ui/tests/modules/field_ui_test/field_ui_test.info.yml b/core/modules/field_ui/tests/modules/field_ui_test/field_ui_test.info.yml index aa8a97a43815deff1416cddeb3193bc2c15119eb..75ceb5ad69bafc258085041fc4cd5ead081306fc 100644 --- a/core/modules/field_ui/tests/modules/field_ui_test/field_ui_test.info.yml +++ b/core/modules/field_ui/tests/modules/field_ui_test/field_ui_test.info.yml @@ -1,6 +1,5 @@ name: 'Field UI test' type: module description: 'Support module for Field UI tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/file/file.info.yml b/core/modules/file/file.info.yml index f9f78a703d79fa02f32bfd000251c3d35dee5560..5479b3b3b8631f0760199e87cedd6c22fe000aea 100644 --- a/core/modules/file/file.info.yml +++ b/core/modules/file/file.info.yml @@ -3,6 +3,5 @@ type: module description: 'Defines a file field type.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:field diff --git a/core/modules/file/tests/file_module_test/file_module_test.info.yml b/core/modules/file/tests/file_module_test/file_module_test.info.yml index 097b0a5c429c813db688b6e067149da4b59cb337..6f7ed1d48f5cac1825c9ce7eaef487e419b041cf 100644 --- a/core/modules/file/tests/file_module_test/file_module_test.info.yml +++ b/core/modules/file/tests/file_module_test/file_module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides hooks for testing File module functionality.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/file/tests/file_test/file_test.info.yml b/core/modules/file/tests/file_test/file_test.info.yml index d5ebfdfd35c37349544cca7b8605f57115d4b9e2..d555ddbcaa4d5abd93754e406d9c9f61b501136e 100644 --- a/core/modules/file/tests/file_test/file_test.info.yml +++ b/core/modules/file/tests/file_test/file_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for file handling tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/file/tests/modules/file_test_views/file_test_views.info.yml b/core/modules/file/tests/modules/file_test_views/file_test_views.info.yml index cc2d93d1cefb6c280e2d723ec63c422f35586f69..b7f255ce1094fa297dfcaa1a340d7310055d82ff 100644 --- a/core/modules/file/tests/modules/file_test_views/file_test_views.info.yml +++ b/core/modules/file/tests/modules/file_test_views/file_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views file tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:file - drupal:views diff --git a/core/modules/filter/filter.info.yml b/core/modules/filter/filter.info.yml index 0f3c94ce66cacc91e454ec7f1d8dc99f11c3a682..251b956daccf8ed9d84834862e7cd443fda41ba9 100644 --- a/core/modules/filter/filter.info.yml +++ b/core/modules/filter/filter.info.yml @@ -3,7 +3,6 @@ type: module description: 'Filters content in preparation for display.' package: Core version: VERSION -core: 8.x configure: filter.admin_overview dependencies: - drupal:user diff --git a/core/modules/filter/tests/filter_test/filter_test.info.yml b/core/modules/filter/tests/filter_test/filter_test.info.yml index 433adb659fe615d3b6c367431c2de1cf3849bccb..96aa8caca1126727a19ae18a0df7c1eedb89949a 100644 --- a/core/modules/filter/tests/filter_test/filter_test.info.yml +++ b/core/modules/filter/tests/filter_test/filter_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Tests filter hooks and functions.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:filter diff --git a/core/modules/filter/tests/filter_test_plugin/filter_test_plugin.info.yml b/core/modules/filter/tests/filter_test_plugin/filter_test_plugin.info.yml index 010c8f829f14a5ea18112f1ec23098f1156e3a7e..42023909932c0179f417b1b72c75bdb1578a37c6 100644 --- a/core/modules/filter/tests/filter_test_plugin/filter_test_plugin.info.yml +++ b/core/modules/filter/tests/filter_test_plugin/filter_test_plugin.info.yml @@ -3,4 +3,3 @@ type: module description: 'Tests enabling of modules which provide filter plugins.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/forum/forum.info.yml b/core/modules/forum/forum.info.yml index d275dfccb1e6583a0028301902ca3bba708dcc76..d57a37abef1d3289161ab441cb09f0619cb21622 100644 --- a/core/modules/forum/forum.info.yml +++ b/core/modules/forum/forum.info.yml @@ -9,5 +9,4 @@ dependencies: - drupal:options package: Core version: VERSION -core: 8.x configure: forum.overview diff --git a/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml b/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml index 6debc15a7a35ab9c193cdbb71a2e0662c71a994a..e4b4c9692f09a9f8eb0f5cf50a7b63f42a8bfa14 100644 --- a/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml +++ b/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views forum tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:forum - drupal:views diff --git a/core/modules/hal/hal.info.yml b/core/modules/hal/hal.info.yml index 28399432505bfd3007e56cd2a7b7d402583ccb5e..e7739666b1b684a8d2cadb5c1d0dae24350d7f1c 100644 --- a/core/modules/hal/hal.info.yml +++ b/core/modules/hal/hal.info.yml @@ -3,6 +3,5 @@ type: module description: 'Serializes entities using Hypertext Application Language.' package: Web services version: VERSION -core: 8.x dependencies: - drupal:serialization diff --git a/core/modules/hal/tests/modules/hal_test/hal_test.info.yml b/core/modules/hal/tests/modules/hal_test/hal_test.info.yml index 8f7d7ad0bf45235d52af0e9382ace47233359f2d..9321b2ee525e0a16f41a592d187dfc6f878de814 100644 --- a/core/modules/hal/tests/modules/hal_test/hal_test.info.yml +++ b/core/modules/hal/tests/modules/hal_test/hal_test.info.yml @@ -3,4 +3,3 @@ type: module description: "Support module for HAL tests." package: Testing version: VERSION -core: 8.x diff --git a/core/modules/help/help.info.yml b/core/modules/help/help.info.yml index ee4c6433e9e5fdbd815f1b94b522cea18913424d..45fe719faae629f8f6d8a82692e697e71cea6f1a 100644 --- a/core/modules/help/help.info.yml +++ b/core/modules/help/help.info.yml @@ -3,4 +3,3 @@ type: module description: 'Manages the display of online help.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/help/tests/modules/help_page_test/help_page_test.info.yml b/core/modules/help/tests/modules/help_page_test/help_page_test.info.yml index 7de2a0d06da16ae67aae927b89743c270b4759cc..29d91ff019403dada3b98b59bb915454f631b0a4 100644 --- a/core/modules/help/tests/modules/help_page_test/help_page_test.info.yml +++ b/core/modules/help/tests/modules/help_page_test/help_page_test.info.yml @@ -3,5 +3,4 @@ type: module description: 'Module to test the help page.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/help/tests/modules/help_test/help_test.info.yml b/core/modules/help/tests/modules/help_test/help_test.info.yml index 668ae38bae6cb70a0d4ffa3faab540cee5251b63..1b629b3f3e318b44e0e835183e564f5647f61f8c 100644 --- a/core/modules/help/tests/modules/help_test/help_test.info.yml +++ b/core/modules/help/tests/modules/help_test/help_test.info.yml @@ -1,6 +1,5 @@ name: help_test type: module -core: 8.x package: Testing dependencies: - drupal:help diff --git a/core/modules/help/tests/modules/more_help_page_test/more_help_page_test.info.yml b/core/modules/help/tests/modules/more_help_page_test/more_help_page_test.info.yml index cc15ce4b322ad66a486c165ccc147c8dcee40889..2e5ed9e6d5df21d9560bec26b33468f4bbbe339e 100644 --- a/core/modules/help/tests/modules/more_help_page_test/more_help_page_test.info.yml +++ b/core/modules/help/tests/modules/more_help_page_test/more_help_page_test.info.yml @@ -3,5 +3,4 @@ type: module description: 'Module to test the help page.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/help_topics/help_topics.info.yml b/core/modules/help_topics/help_topics.info.yml index 3afdacc43293a3dc14335a5bf6caa51a0137d072..819aef1170f32f837a75d686c48d3a629b8670d6 100644 --- a/core/modules/help_topics/help_topics.info.yml +++ b/core/modules/help_topics/help_topics.info.yml @@ -1,7 +1,6 @@ name: Help Topics type: module description: 'Displays help topics provided by themes and modules.' -core: 8.x package: Core (Experimental) version: VERSION dependencies: diff --git a/core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.info.yml b/core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.info.yml index 155c43d56509eb2afb164f82d0de184a3cc7f6e9..62b8655ff22ac65ae8a0484e346979563cb72844 100644 --- a/core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.info.yml +++ b/core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.info.yml @@ -4,4 +4,3 @@ name: 'ABC Help Test' type: module description: 'Support module for help testing.' package: Testing -core: 8.x diff --git a/core/modules/help_topics/tests/themes/help_topics_test_theme/help_topics_test_theme.info.yml b/core/modules/help_topics/tests/themes/help_topics_test_theme/help_topics_test_theme.info.yml index d7d3bfe10173e413882fb38af00bafdf55cdc1fa..85421a1af7fb88dac9e634968e3c788675aa0ad2 100644 --- a/core/modules/help_topics/tests/themes/help_topics_test_theme/help_topics_test_theme.info.yml +++ b/core/modules/help_topics/tests/themes/help_topics_test_theme/help_topics_test_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: A theme to test help topics. version: VERSION -core: 8.x diff --git a/core/modules/history/history.info.yml b/core/modules/history/history.info.yml index 006da6297df8a92ee832611ea80907695716ed9d..66e844958de24059fbb0849690295e682ae3641f 100644 --- a/core/modules/history/history.info.yml +++ b/core/modules/history/history.info.yml @@ -3,6 +3,5 @@ type: module description: 'Records which user has read which content.' package: Core version: VERSION -core: 8.x dependencies: - drupal:node diff --git a/core/modules/image/image.info.yml b/core/modules/image/image.info.yml index c17c7e09a143a6ece1df6db0f2d331134023019d..36b4bb599450f78acea123e6424414f76349de75 100644 --- a/core/modules/image/image.info.yml +++ b/core/modules/image/image.info.yml @@ -3,7 +3,6 @@ type: module description: 'Defines an image field type and provides image manipulation tools.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:file configure: entity.image_style.collection diff --git a/core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.info.yml b/core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.info.yml index 293265b09b859632d97364ceb4ea68d85948ce11..75e3202449685b36f555885a34bbb9965cb7127c 100644 --- a/core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.info.yml +++ b/core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides an entity field access hook implementation to set an image field as hidden.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/image/tests/modules/image_module_test/image_module_test.info.yml b/core/modules/image/tests/modules/image_module_test/image_module_test.info.yml index 7c4d3ace4e2e44321d4bef9ce46e81c8bde26f9d..948acfc3531b5d914b5e46e6d40937958610fab9 100644 --- a/core/modules/image/tests/modules/image_module_test/image_module_test.info.yml +++ b/core/modules/image/tests/modules/image_module_test/image_module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides hook implementations for testing Image module functionality.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/image/tests/modules/image_test_views/image_test_views.info.yml b/core/modules/image/tests/modules/image_test_views/image_test_views.info.yml index eb9cc3a2600d2a68caa8c1eafc5636f0b5e2b4c0..bcba82f2a0472915fa98d0d6dd1a114772f49c39 100644 --- a/core/modules/image/tests/modules/image_test_views/image_test_views.info.yml +++ b/core/modules/image/tests/modules/image_test_views/image_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views image tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:image - drupal:views diff --git a/core/modules/inline_form_errors/inline_form_errors.info.yml b/core/modules/inline_form_errors/inline_form_errors.info.yml index 6465e19e8f1c7d38259e6452ecc81ceaaa40408a..0e8cee04c7ee9724d80b3532c7dfcb60592de0e6 100644 --- a/core/modules/inline_form_errors/inline_form_errors.info.yml +++ b/core/modules/inline_form_errors/inline_form_errors.info.yml @@ -2,5 +2,4 @@ type: module name: Inline Form Errors description: 'Places error messages adjacent to form inputs, for improved usability and accessibility.' version: VERSION -core: 8.x package: Core diff --git a/core/modules/jsonapi/jsonapi.info.yml b/core/modules/jsonapi/jsonapi.info.yml index b99b55f10dce95f4fc06d2c15ecc17a61ce6cc17..41ec97c5285688c989e1aa4ec6b0a4cd867d5966 100644 --- a/core/modules/jsonapi/jsonapi.info.yml +++ b/core/modules/jsonapi/jsonapi.info.yml @@ -1,7 +1,6 @@ name: JSON:API type: module description: Exposes entities as a JSON:API-specification-compliant web API. -core: 8.x package: Web services configure: jsonapi.settings dependencies: diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_collection_count/jsonapi_test_collection_count.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_collection_count/jsonapi_test_collection_count.info.yml index a5664b71977052e816eebbe96ecfc71acc8716ec..6180939ff5595c0f73580a0ca82e0e3ea88dd76d 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_collection_count/jsonapi_test_collection_count.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_collection_count/jsonapi_test_collection_count.info.yml @@ -1,4 +1,3 @@ name: 'JSON API test collection counts' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_data_type/jsonapi_test_data_type.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_data_type/jsonapi_test_data_type.info.yml index a72ccb10ac555d4912126aaab4cecd31b9f20322..3139b89738fd2e4cea38c853ce95a7731d77cd81 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_data_type/jsonapi_test_data_type.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_data_type/jsonapi_test_data_type.info.yml @@ -1,4 +1,3 @@ name: 'JSON API test format-agnostic @DataType normalizers' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.info.yml index 4cfaf77cfecbc3a2ed2bf03033b50805ae681b9e..0b4b14be84163f0234d5ce89011ab14b749cb2eb 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.info.yml @@ -2,4 +2,3 @@ name: 'JSON API field access' type: module description: 'Provides a custom field access hook to test JSON API field access security.' package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_field_aliasing/jsonapi_test_field_aliasing.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_field_aliasing/jsonapi_test_field_aliasing.info.yml index 14a5c32b6cb6ca5f32733fabb1e7ccff2443dee8..be5e36ec83d39f533b276ee8496173aa3f5dfd77 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_field_aliasing/jsonapi_test_field_aliasing.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_field_aliasing/jsonapi_test_field_aliasing.info.yml @@ -1,4 +1,3 @@ name: 'JSON:API test field aliasing' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_field_filter_access/jsonapi_test_field_filter_access.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_field_filter_access/jsonapi_test_field_filter_access.info.yml index 0ffa03d4acfe6ebe9f7bc688c4310b84b5106a7b..ad6948604f0bc536ac0bae70b4ff79740b6f2e97 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_field_filter_access/jsonapi_test_field_filter_access.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_field_filter_access/jsonapi_test_field_filter_access.info.yml @@ -2,4 +2,3 @@ name: 'JSON:API filter access' type: module description: 'Provides custom access related code to test JSON:API filter security.' package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_field_type/jsonapi_test_field_type.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_field_type/jsonapi_test_field_type.info.yml index 30944dbb7501901e4f5307b7c4a9fbd45f9c9cd0..e1afc9f4b8e304b604d2fe6b4cca76bdee4f1725 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_field_type/jsonapi_test_field_type.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_field_type/jsonapi_test_field_type.info.yml @@ -1,4 +1,3 @@ name: 'JSON API test format-agnostic @FieldType normalizers' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_normalizers_kernel/jsonapi_test_normalizers_kernel.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_normalizers_kernel/jsonapi_test_normalizers_kernel.info.yml index b8ab6476e19e410c206a0bba9b10100a2275af30..4d95b0f09a9697d53e7a6f03847c3cd621e693bc 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_normalizers_kernel/jsonapi_test_normalizers_kernel.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_normalizers_kernel/jsonapi_test_normalizers_kernel.info.yml @@ -1,4 +1,3 @@ name: 'JSON API test: normalizers kernel tests, public aliases for select JSON API normalizers' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_resource_type_building/jsonapi_test_resource_type_building.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_resource_type_building/jsonapi_test_resource_type_building.info.yml index 43d9a8381810d6a022cc3d478d1d615bc0a0510b..91bcde061284ea475f89c4343e9a6bb25d783afb 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_resource_type_building/jsonapi_test_resource_type_building.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_resource_type_building/jsonapi_test_resource_type_building.info.yml @@ -1,4 +1,3 @@ name: 'JSON:API test resource type building API' type: module package: Testing -core: 8.x diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_user/jsonapi_test_user.info.yml b/core/modules/jsonapi/tests/modules/jsonapi_test_user/jsonapi_test_user.info.yml index 179eda4da52d6d80f87c00cb6594de92d05e153d..a8dda5e4dc73eecdeb1603d2b3ee716444ae883d 100644 --- a/core/modules/jsonapi/tests/modules/jsonapi_test_user/jsonapi_test_user.info.yml +++ b/core/modules/jsonapi/tests/modules/jsonapi_test_user/jsonapi_test_user.info.yml @@ -1,4 +1,3 @@ name: 'JSON:API user tests' type: module package: Testing -core: 8.x diff --git a/core/modules/language/language.info.yml b/core/modules/language/language.info.yml index 30770401ad6a892455a48c6aa35dafd3076bdbe9..7283da2c6fe476867c269ad55f55e488c0b00b32 100644 --- a/core/modules/language/language.info.yml +++ b/core/modules/language/language.info.yml @@ -3,5 +3,4 @@ type: module description: 'Allows users to configure languages and apply them to content.' package: Multilingual version: VERSION -core: 8.x configure: entity.configurable_language.collection diff --git a/core/modules/language/tests/language_config_override_test/language_config_override_test.info.yml b/core/modules/language/tests/language_config_override_test/language_config_override_test.info.yml index 4345db5a4089cdf74c5ef3cfd104378153113068..fae9e3c03568644c53b6d8bc690292733d2b053f 100644 --- a/core/modules/language/tests/language_config_override_test/language_config_override_test.info.yml +++ b/core/modules/language/tests/language_config_override_test/language_config_override_test.info.yml @@ -1,6 +1,5 @@ name: 'Language config overridetest' type: module description: 'Support module for the language config override test.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/language/tests/language_elements_test/language_elements_test.info.yml b/core/modules/language/tests/language_elements_test/language_elements_test.info.yml index 35ed3e03c22645b1d613961b169c54974e343e6a..5a804be28c8d0270dd32d78936de3eb6df9ab655 100644 --- a/core/modules/language/tests/language_elements_test/language_elements_test.info.yml +++ b/core/modules/language/tests/language_elements_test/language_elements_test.info.yml @@ -1,7 +1,6 @@ name: 'Language form elements test' type: module description: 'Support module for the language form elements tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/language/tests/language_entity_field_access_test/language_entity_field_access_test.info.yml b/core/modules/language/tests/language_entity_field_access_test/language_entity_field_access_test.info.yml index 295a65b4fb57ea4373f7c3b9a80b07be2e8eb8a9..d83daa8c4af07025ddccb4381aa6ebc8eed27807 100644 --- a/core/modules/language/tests/language_entity_field_access_test/language_entity_field_access_test.info.yml +++ b/core/modules/language/tests/language_entity_field_access_test/language_entity_field_access_test.info.yml @@ -1,7 +1,6 @@ name: 'Language entity field access test' type: module description: 'Support module for verifying entity field access and the language selector.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/language/tests/language_test/language_test.info.yml b/core/modules/language/tests/language_test/language_test.info.yml index 03051cd8c16dfb6c0777f2bc0b211c7ef0171ccb..65e85ba298c75cef0935c627104c7773f8f102b4 100644 --- a/core/modules/language/tests/language_test/language_test.info.yml +++ b/core/modules/language/tests/language_test/language_test.info.yml @@ -1,6 +1,5 @@ name: 'Language test' type: module description: 'Support module for the language layer tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/language/tests/test_module/test_module.info.yml b/core/modules/language/tests/test_module/test_module.info.yml index f68226f86b1133a73269bb68747ce1ffd9aeccfc..64182c56ddd668961d722e7227090cbd71fc09c7 100644 --- a/core/modules/language/tests/test_module/test_module.info.yml +++ b/core/modules/language/tests/test_module/test_module.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/layout_builder.info.yml b/core/modules/layout_builder/layout_builder.info.yml index 6e700e1b09bd00cbf845a14fbfef9c4a7ac83596..ccf4e273d69d9cdd1b3bbf26537e7578f9548307 100644 --- a/core/modules/layout_builder/layout_builder.info.yml +++ b/core/modules/layout_builder/layout_builder.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows users to add and arrange blocks and content fields directly on the content.' package: Core version: VERSION -core: 8.x dependencies: - drupal:layout_discovery - drupal:contextual diff --git a/core/modules/layout_builder/tests/modules/layout_builder_defaults_test/layout_builder_defaults_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_defaults_test/layout_builder_defaults_test.info.yml index ab5323585883cdeb4fb267490fc8c385c39e9266..f3c4edb9a40fd56ab3c71b46ca0de64d323c784e 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_defaults_test/layout_builder_defaults_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_defaults_test/layout_builder_defaults_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing layout building defaults.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/tests/modules/layout_builder_field_block_theme_suggestions_test/layout_builder_field_block_theme_suggestions_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_field_block_theme_suggestions_test/layout_builder_field_block_theme_suggestions_test.info.yml index 589c2561032408b94580afb4c2e22bc1e3baae5d..33e8aa3d14fa2197598008f29c5107d541d5d081 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_field_block_theme_suggestions_test/layout_builder_field_block_theme_suggestions_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_field_block_theme_suggestions_test/layout_builder_field_block_theme_suggestions_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/tests/modules/layout_builder_fieldblock_test/layout_builder_fieldblock_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_fieldblock_test/layout_builder_fieldblock_test.info.yml index 607877e78081aee3f45d28c322e40b697546c654..5e84b115b2ae46cea7a5f8d38dff14d29204f580 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_fieldblock_test/layout_builder_fieldblock_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_fieldblock_test/layout_builder_fieldblock_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing layout building.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/tests/modules/layout_builder_overrides_test/layout_builder_overrides_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_overrides_test/layout_builder_overrides_test.info.yml index f9ed711707fe91cf3115749bdf89f56c04245a90..3a387db2410fade377a03d52d2cc43ab848cda33 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_overrides_test/layout_builder_overrides_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_overrides_test/layout_builder_overrides_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing overriding layout building.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/tests/modules/layout_builder_test/layout_builder_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_test/layout_builder_test.info.yml index 607877e78081aee3f45d28c322e40b697546c654..5e84b115b2ae46cea7a5f8d38dff14d29204f580 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_test/layout_builder_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_test/layout_builder_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing layout building.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/layout_builder/tests/modules/layout_builder_views_test/layout_builder_views_test.info.yml b/core/modules/layout_builder/tests/modules/layout_builder_views_test/layout_builder_views_test.info.yml index b471a0a636f1932e97a64bcd34ab534511a61955..79d88d27df6934db8286f960238e60c928e1759a 100644 --- a/core/modules/layout_builder/tests/modules/layout_builder_views_test/layout_builder_views_test.info.yml +++ b/core/modules/layout_builder/tests/modules/layout_builder_views_test/layout_builder_views_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing.' package: Testing version: VERSION -core: 8.x dependencies: - views diff --git a/core/modules/layout_discovery/layout_discovery.info.yml b/core/modules/layout_discovery/layout_discovery.info.yml index d0c8d3aff623920328c9db7064c5ffc5ad1a747b..71de940794dd4a07b761e479529da574c4edb32f 100644 --- a/core/modules/layout_discovery/layout_discovery.info.yml +++ b/core/modules/layout_discovery/layout_discovery.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides a way for modules or themes to register layouts.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/layout_discovery/tests/themes/test_layout_theme/test_layout_theme.info.yml b/core/modules/layout_discovery/tests/themes/test_layout_theme/test_layout_theme.info.yml index 021d43fd272ccc77dfbfd8cc232b2b9aaf9e791e..7f04437d300756ad5da874767aa300a7d33b9bb0 100644 --- a/core/modules/layout_discovery/tests/themes/test_layout_theme/test_layout_theme.info.yml +++ b/core/modules/layout_discovery/tests/themes/test_layout_theme/test_layout_theme.info.yml @@ -3,4 +3,3 @@ type: theme description: 'Theme for testing a theme-provided layout' version: VERSION base theme: classy -core: 8.x diff --git a/core/modules/link/link.info.yml b/core/modules/link/link.info.yml index c3f8f9c94a961bd8da99910bb347e18b93c54964..73c83c26e6a3b0051570472a19f958618fc31276 100644 --- a/core/modules/link/link.info.yml +++ b/core/modules/link/link.info.yml @@ -1,7 +1,6 @@ name: Link type: module description: 'Provides a simple link field type.' -core: 8.x package: Field types version: VERSION dependencies: diff --git a/core/modules/link/tests/modules/link_test_base_field/link_test_base_field.info.yml b/core/modules/link/tests/modules/link_test_base_field/link_test_base_field.info.yml index ce07b8f95fedbbfb6a0ec2abe724d882726bff7e..28e13fed0c54c1e3178b219a8a323fde4bcfecb3 100644 --- a/core/modules/link/tests/modules/link_test_base_field/link_test_base_field.info.yml +++ b/core/modules/link/tests/modules/link_test_base_field/link_test_base_field.info.yml @@ -1,7 +1,6 @@ name: Link test base field description: Tests link field as an optional base field type: module -core: 8.x hidden: true dependencies: - drupal:link diff --git a/core/modules/link/tests/modules/link_test_views/link_test_views.info.yml b/core/modules/link/tests/modules/link_test_views/link_test_views.info.yml index e40719e06a78692f03cbd8759e324e3a0cde568a..ebd5d9f0c5bf6b23ce8e69155e341220afb5035f 100644 --- a/core/modules/link/tests/modules/link_test_views/link_test_views.info.yml +++ b/core/modules/link/tests/modules/link_test_views/link_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views link tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:node - drupal:views diff --git a/core/modules/locale/locale.info.yml b/core/modules/locale/locale.info.yml index 1db8704e71c0b748b5a7aadcf5654a2b48a7ba8b..5fd67654b1fc19e449606b6f3ccec528064ee7cf 100644 --- a/core/modules/locale/locale.info.yml +++ b/core/modules/locale/locale.info.yml @@ -4,7 +4,6 @@ description: 'Translates the built-in user interface.' configure: locale.translate_page package: Multilingual version: VERSION -core: 8.x dependencies: - drupal:language - drupal:file diff --git a/core/modules/locale/tests/modules/early_translation_test/early_translation_test.info.yml b/core/modules/locale/tests/modules/early_translation_test/early_translation_test.info.yml index 8487085579848f584021c75612e4d1a83c47e94a..68461916a9c74be42cdb2d419d4c887494584195 100644 --- a/core/modules/locale/tests/modules/early_translation_test/early_translation_test.info.yml +++ b/core/modules/locale/tests/modules/early_translation_test/early_translation_test.info.yml @@ -1,6 +1,5 @@ name: 'Early translation test' type: module description: 'Support module for testing early bootstrap getting of annotations with translations.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/locale/tests/modules/locale_test/locale_test.info.yml b/core/modules/locale/tests/modules/locale_test/locale_test.info.yml index ca4211d41dd52d17e5533de38127fdbf93f16ccd..cc646c8a60614c350af9b0f82f506d4344355a12 100644 --- a/core/modules/locale/tests/modules/locale_test/locale_test.info.yml +++ b/core/modules/locale/tests/modules/locale_test/locale_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for locale module testing.' package: Testing version: '1.2' -core: 8.x hidden: true 'interface translation project': locale_test 'interface translation server pattern': core/modules/locale/test/test.%language.po diff --git a/core/modules/locale/tests/modules/locale_test_development_release/locale_test_development_release.info.yml b/core/modules/locale/tests/modules/locale_test_development_release/locale_test_development_release.info.yml index fd1481ca16daa956cdf338ae565e06c1371d71b1..199766b61285a539a9fe5376d2d5bd76bbd97a07 100644 --- a/core/modules/locale/tests/modules/locale_test_development_release/locale_test_development_release.info.yml +++ b/core/modules/locale/tests/modules/locale_test_development_release/locale_test_development_release.info.yml @@ -3,5 +3,4 @@ type: module description: 'Helper module to test the behaviour when the core verison is a development release.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.info.yml b/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.info.yml index d703b0d258318a80d1d9d6d95305f3e5a5a753c7..2ae88b6d707e73331f78df8daf39be404513b9c6 100644 --- a/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.info.yml +++ b/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.info.yml @@ -3,7 +3,6 @@ type: module description: 'Translation test module for locale module testing.' package: Testing version: '1.3' -core: 8.x hidden: true 'interface translation project': locale_test_translate 'interface translation server pattern': core/modules/locale/tests/test.%language.po diff --git a/core/modules/media/media.info.yml b/core/modules/media/media.info.yml index 4766c0e524ef26fa3f989d87263f1f1087f29bae..6d5ea6ea7d9f5262608f8cb3e2f8a51018321d5c 100644 --- a/core/modules/media/media.info.yml +++ b/core/modules/media/media.info.yml @@ -3,7 +3,6 @@ description: 'Manages the creation, configuration, and display of media items.' type: module package: Core version: VERSION -core: 8.x dependencies: - drupal:file - drupal:image diff --git a/core/modules/media/tests/modules/media_test_ckeditor/media_test_ckeditor.info.yml b/core/modules/media/tests/modules/media_test_ckeditor/media_test_ckeditor.info.yml index 7a7255f047ce12c9168f5e887a9a434d121c1557..a1e4662000154c8442fbcf4fb79dd4e530bd530d 100644 --- a/core/modules/media/tests/modules/media_test_ckeditor/media_test_ckeditor.info.yml +++ b/core/modules/media/tests/modules/media_test_ckeditor/media_test_ckeditor.info.yml @@ -3,6 +3,5 @@ description: 'Provides functionality to test the Media Embed CKEditor integratio type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:media diff --git a/core/modules/media/tests/modules/media_test_filter/media_test_filter.info.yml b/core/modules/media/tests/modules/media_test_filter/media_test_filter.info.yml index 5c4c7838d6d36fa3508ec833fc04046fae8bdd40..54dbb872cb7ab5aa70143e929ae83d356caca48c 100644 --- a/core/modules/media/tests/modules/media_test_filter/media_test_filter.info.yml +++ b/core/modules/media/tests/modules/media_test_filter/media_test_filter.info.yml @@ -3,6 +3,5 @@ description: 'Provides functionality to test the Media Embed filter.' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:media diff --git a/core/modules/media/tests/modules/media_test_oembed/media_test_oembed.info.yml b/core/modules/media/tests/modules/media_test_oembed/media_test_oembed.info.yml index 2ad5d2fad33178fdde17212dc7eef8ff2abb1503..dc1912a8a09729d897e33dc84812209f78bcbb32 100644 --- a/core/modules/media/tests/modules/media_test_oembed/media_test_oembed.info.yml +++ b/core/modules/media/tests/modules/media_test_oembed/media_test_oembed.info.yml @@ -3,6 +3,5 @@ description: 'Provides functionality to mimic an oEmbed provider.' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:media diff --git a/core/modules/media/tests/modules/media_test_source/media_test_source.info.yml b/core/modules/media/tests/modules/media_test_source/media_test_source.info.yml index c0a8736194e62165bc200196fda72698587a1e77..89c7a6cc03433e1b7970ffd498a9bf9d254874ac 100644 --- a/core/modules/media/tests/modules/media_test_source/media_test_source.info.yml +++ b/core/modules/media/tests/modules/media_test_source/media_test_source.info.yml @@ -1,6 +1,5 @@ name: 'Test media source' type: module description: 'Provides test media source to test configuration forms.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/media/tests/modules/media_test_type/media_test_type.info.yml b/core/modules/media/tests/modules/media_test_type/media_test_type.info.yml index 5e81ed0acc45368247e1adf1055e9ea343b2fc93..9032a9ffc5a06557eeecb1adace01abf864e3cd0 100644 --- a/core/modules/media/tests/modules/media_test_type/media_test_type.info.yml +++ b/core/modules/media/tests/modules/media_test_type/media_test_type.info.yml @@ -1,7 +1,6 @@ name: 'Media test type' type: module description: 'Provides test type for a media item.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/media/tests/modules/media_test_views/media_test_views.info.yml b/core/modules/media/tests/modules/media_test_views/media_test_views.info.yml index ee833fc39997139eaeb11f6b1e980564bc8eaf3c..8c134436799e9a5469352327958ebdaf8340d762 100644 --- a/core/modules/media/tests/modules/media_test_views/media_test_views.info.yml +++ b/core/modules/media/tests/modules/media_test_views/media_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views media tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:media - drupal:views diff --git a/core/modules/media_library/media_library.info.yml b/core/modules/media_library/media_library.info.yml index 41b1e1eb3045e381928f3e83cf25039e7283500c..fbda817c5bfe154d05e0c41d4d122a5f745de766 100644 --- a/core/modules/media_library/media_library.info.yml +++ b/core/modules/media_library/media_library.info.yml @@ -3,7 +3,6 @@ type: module description: 'Enhances the media list with additional features to more easily find and use existing media items.' package: Core (Experimental) version: VERSION -core: 8.x dependencies: - drupal:media - drupal:views diff --git a/core/modules/media_library/tests/modules/media_library_test/media_library_test.info.yml b/core/modules/media_library/tests/modules/media_library_test/media_library_test.info.yml index 32b9d973b994f16f6218b81f467e0129be281286..2990b6623228de52f01dd1b07e85b8c27f411007 100644 --- a/core/modules/media_library/tests/modules/media_library_test/media_library_test.info.yml +++ b/core/modules/media_library/tests/modules/media_library_test/media_library_test.info.yml @@ -2,7 +2,6 @@ name: 'Media Library test' type: module description: 'Test module for Media Library.' package: Testing -core: 8.x dependencies: - drupal:image - drupal:media_library diff --git a/core/modules/media_library/tests/modules/media_library_test_widget/media_library_test_widget.info.yml b/core/modules/media_library/tests/modules/media_library_test_widget/media_library_test_widget.info.yml index fe6cac86a57b6a909afd42252f3d39185a44df71..c76333ffd8d7484f80b816acfa14984c46420bd5 100644 --- a/core/modules/media_library/tests/modules/media_library_test_widget/media_library_test_widget.info.yml +++ b/core/modules/media_library/tests/modules/media_library_test_widget/media_library_test_widget.info.yml @@ -2,7 +2,6 @@ name: 'Media Library test widget' type: module description: 'Test widget that has a nested media library widget' package: Testing -core: 8.x dependencies: - drupal:image - drupal:media_library diff --git a/core/modules/menu_link_content/menu_link_content.info.yml b/core/modules/menu_link_content/menu_link_content.info.yml index c001f5eb53258497c92b5ef1080233a42f6d7346..5f5041eea085a28d1f2603f2e40cfea38642411c 100644 --- a/core/modules/menu_link_content/menu_link_content.info.yml +++ b/core/modules/menu_link_content/menu_link_content.info.yml @@ -3,6 +3,5 @@ type: module description: 'Allows administrators to create custom menu links.' package: Core version: VERSION -core: 8.x dependencies: - drupal:link diff --git a/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.info.yml b/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.info.yml index 8de1db409a6720a09b6f2360a4d0e1a3dec8b07a..743ae4e13fa38ffdfd7d47947b17c5230b372627 100644 --- a/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.info.yml +++ b/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.info.yml @@ -1,6 +1,5 @@ name: 'Menu link content dynamic route' type: module -core: 8.x hidden: true dependencies: - drupal:menu_link_content diff --git a/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.info.yml b/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.info.yml index 6f4e4a9b397dcf5dd8654ec5c9870d2fcef70ea3..73e09518e58cbb00d30060dc1725a9c4a1a90c01 100644 --- a/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.info.yml +++ b/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.info.yml @@ -1,4 +1,3 @@ name: 'Outbound route/path processing' type: module -core: 8.x hidden: true diff --git a/core/modules/menu_ui/menu_ui.info.yml b/core/modules/menu_ui/menu_ui.info.yml index 06233205855f1afc5025aa2fb0ae34fb2ec92d2a..2e76a096fee4bf0477548549939268af996b76e4 100644 --- a/core/modules/menu_ui/menu_ui.info.yml +++ b/core/modules/menu_ui/menu_ui.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows administrators to customize the site navigation menu.' package: Core version: VERSION -core: 8.x configure: entity.menu.collection dependencies: - drupal:menu_link_content diff --git a/core/modules/migrate/migrate.info.yml b/core/modules/migrate/migrate.info.yml index 3d2f408052aaef2d5f5c1c0e401127a076a65536..f9bedbbd9d5b57d2c0a764ffb5edb53b58e89233 100644 --- a/core/modules/migrate/migrate.info.yml +++ b/core/modules/migrate/migrate.info.yml @@ -3,4 +3,3 @@ type: module description: 'Handles migrations' package: Migration version: VERSION -core: 8.x diff --git a/core/modules/migrate/tests/modules/migrate_entity_test/migrate_entity_test.info.yml b/core/modules/migrate/tests/modules/migrate_entity_test/migrate_entity_test.info.yml index 8f2da388cf3134dfd2356480e9f004116d4e153c..b511e27b5817d72a71055f564b277efac1baeb18 100644 --- a/core/modules/migrate/tests/modules/migrate_entity_test/migrate_entity_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_entity_test/migrate_entity_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for entity destination test.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate/tests/modules/migrate_events_test/migrate_events_test.info.yml b/core/modules/migrate/tests/modules/migrate_events_test/migrate_events_test.info.yml index 6ef8e1ffa2394150b3658afed0c3604b24391a63..eef4191ec28bd993801d94ee7c0e4dae83727017 100644 --- a/core/modules/migrate/tests/modules/migrate_events_test/migrate_events_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_events_test/migrate_events_test.info.yml @@ -2,4 +2,3 @@ name: 'Migrate events test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate/tests/modules/migrate_external_translated_test/migrate_external_translated_test.info.yml b/core/modules/migrate/tests/modules/migrate_external_translated_test/migrate_external_translated_test.info.yml index 8573407fa36bc6be38cf912223e0873049596534..947d4f5b4fc98c98e3a15c6c7cf07cfd4852540c 100644 --- a/core/modules/migrate/tests/modules/migrate_external_translated_test/migrate_external_translated_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_external_translated_test/migrate_external_translated_test.info.yml @@ -2,7 +2,6 @@ name: 'Migration external translated test' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:node - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migrate_high_water_test/migrate_high_water_test.info.yml b/core/modules/migrate/tests/modules/migrate_high_water_test/migrate_high_water_test.info.yml index 98340a97ee1c9749039d030bbe8492a896b721e2..d1ec83c194175aa236c7e30e6b17ae3d345697bd 100644 --- a/core/modules/migrate/tests/modules/migrate_high_water_test/migrate_high_water_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_high_water_test/migrate_high_water_test.info.yml @@ -2,6 +2,5 @@ type: module name: Migration High Water Test description: 'Provides test fixtures for testing high water marks.' package: Testing -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migrate_lookup_test/migrate_lookup_test.info.yml b/core/modules/migrate/tests/modules/migrate_lookup_test/migrate_lookup_test.info.yml index e93c4949a02e087bd87c97a71bad27d0254c71e5..39fd5641c9130c0c57cbfe1aeb664bdd3fcf4747 100644 --- a/core/modules/migrate/tests/modules/migrate_lookup_test/migrate_lookup_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_lookup_test/migrate_lookup_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test migrations to test migration lookup service.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.info.yml b/core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.info.yml index f9ec92f78b7e297d738b995ed02bb591b1f72bd3..4f3d1e4b1237c7245483f0fa947017e83ef779dd 100644 --- a/core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for source plugin prepareRow testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate/tests/modules/migrate_query_batch_test/migrate_query_batch_test.info.yml b/core/modules/migrate/tests/modules/migrate_query_batch_test/migrate_query_batch_test.info.yml index acaeec4d5ba4261d54979a5809e5287d545357c1..fc18deb659fef4493f542aae2585bfbc1917f5b3 100644 --- a/core/modules/migrate/tests/modules/migrate_query_batch_test/migrate_query_batch_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_query_batch_test/migrate_query_batch_test.info.yml @@ -2,6 +2,5 @@ type: module name: Migrate query batch Source test description: 'Provides a database table and records for SQL import with batch testing.' package: Testing -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migrate_stub_test/migrate_stub_test.info.yml b/core/modules/migrate/tests/modules/migrate_stub_test/migrate_stub_test.info.yml index 2b0440185f5c64c4dfc453946a01c9b393264191..558007dd45601ba83a5a427cd94e20a46de314b5 100644 --- a/core/modules/migrate/tests/modules/migrate_stub_test/migrate_stub_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_stub_test/migrate_stub_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test migrations to test migration stub service.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migrate_track_changes_test/migrate_track_changes_test.info.yml b/core/modules/migrate/tests/modules/migrate_track_changes_test/migrate_track_changes_test.info.yml index 6f41410692907a36da807b1cf5bfce7621cef7e2..75842fc132ecb1ed1be63d9fdd58444a0260e812 100644 --- a/core/modules/migrate/tests/modules/migrate_track_changes_test/migrate_track_changes_test.info.yml +++ b/core/modules/migrate/tests/modules/migrate_track_changes_test/migrate_track_changes_test.info.yml @@ -2,6 +2,5 @@ type: module name: Migration Track Changes Test description: 'Provides test fixtures for testing track changes marks.' package: Testing -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate/tests/modules/migration_directory_test/migration_directory_test.info.yml b/core/modules/migrate/tests/modules/migration_directory_test/migration_directory_test.info.yml index c9bce4b820103f94f84d8bc4dc8c4461e3207e5f..d352b6c00724cab49dd335cc72c62988306186e6 100644 --- a/core/modules/migrate/tests/modules/migration_directory_test/migration_directory_test.info.yml +++ b/core/modules/migrate/tests/modules/migration_directory_test/migration_directory_test.info.yml @@ -2,6 +2,5 @@ name: 'Migration directory test' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate_drupal/migrate_drupal.info.yml b/core/modules/migrate_drupal/migrate_drupal.info.yml index 638bc382fd772a26abbcd3aafec85853dc36200e..9f6cec26ce4f248675246314fa4a1b24c62f00a0 100644 --- a/core/modules/migrate_drupal/migrate_drupal.info.yml +++ b/core/modules/migrate_drupal/migrate_drupal.info.yml @@ -3,6 +3,5 @@ type: module description: 'Contains migrations from older Drupal versions.' package: Migration version: VERSION -core: 8.x dependencies: - drupal:migrate diff --git a/core/modules/migrate_drupal/tests/modules/field_discovery_test/field_discovery_test.info.yml b/core/modules/migrate_drupal/tests/modules/field_discovery_test/field_discovery_test.info.yml index effa82da7752571bba4b5afbce7f7029aafa9ef9..f63969711d4e186670e1011cf354b7e4f0c00eac 100644 --- a/core/modules/migrate_drupal/tests/modules/field_discovery_test/field_discovery_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/field_discovery_test/field_discovery_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Module containing a test class exposing protected field discovery methods' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_cckfield_plugin_manager_test/migrate_cckfield_plugin_manager_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_cckfield_plugin_manager_test/migrate_cckfield_plugin_manager_test.info.yml index 8449e1ade0e5a79b7f397fdccc26358a74c49e0d..550616331f1999946c3b5d430541d2e26ec099c2 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_cckfield_plugin_manager_test/migrate_cckfield_plugin_manager_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_cckfield_plugin_manager_test/migrate_cckfield_plugin_manager_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Example module demonstrating the cck field plugin manager in the Migrate API.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/migrate_field_plugin_manager_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/migrate_field_plugin_manager_test.info.yml index db67a4f02387bc70adbb677e2a9d2a05a646b18e..eaa67e0f1876e3ded4ce16bbfabb8115091ae5e4 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/migrate_field_plugin_manager_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/migrate_field_plugin_manager_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Example module demonstrating the field plugin manager in the Migrate API.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_overwrite_test/migrate_overwrite_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_overwrite_test/migrate_overwrite_test.info.yml index 503c6cec716d0c81b024a389239e0f07a03a51e5..fc4e85687f2861923ccd5594cf74409de1aa0de7 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_overwrite_test/migrate_overwrite_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_overwrite_test/migrate_overwrite_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Example module demonstrating property overwrite support in the Migrate API.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrate_state_finished_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrate_state_finished_test.info.yml index a040bc537e576d414a9315d7a5c427d55cd67a85..e776f31694fb1e36c9de7597aa6e3beed1008316 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrate_state_finished_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_state_finished_test/migrate_state_finished_test.info.yml @@ -3,4 +3,3 @@ type: module description: Tests the 'active' migrate state package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_no_file_test/migrate_state_no_file_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_no_file_test/migrate_state_no_file_test.info.yml index db3d9c07769f01bafac43df48ef19fe39c76833e..975d292009fba85e5cb318b5d6924010ca718e40 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_state_no_file_test/migrate_state_no_file_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_state_no_file_test/migrate_state_no_file_test.info.yml @@ -3,4 +3,3 @@ type: module description: Has a migration but Does not have a migrate_drupal.yml file. package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_no_upgrade_path/migrate_state_no_upgrade_path.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_no_upgrade_path/migrate_state_no_upgrade_path.info.yml index 217d4981d93688023318a8ec1e60891a14259503..61e08bf93da0b8a000afec9adc670633d06a2dd5 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_state_no_upgrade_path/migrate_state_no_upgrade_path.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_state_no_upgrade_path/migrate_state_no_upgrade_path.info.yml @@ -3,4 +3,3 @@ type: module description: Does not have a migration or migrate_drupal.yml file. package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrate_state_not_finished_test.info.yml b/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrate_state_not_finished_test.info.yml index 4754c3f1b4249f154fa53218a33bdb81a3645882..0a035a1a91b41b47a44e8971d331898a46d71770 100644 --- a/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrate_state_not_finished_test.info.yml +++ b/core/modules/migrate_drupal/tests/modules/migrate_state_not_finished_test/migrate_state_not_finished_test.info.yml @@ -3,4 +3,3 @@ type: module description: Tests the 'incomplete' migrate state package: Testing version: VERSION -core: 8.x diff --git a/core/modules/migrate_drupal_multilingual/migrate_drupal_multilingual.info.yml b/core/modules/migrate_drupal_multilingual/migrate_drupal_multilingual.info.yml index 75a79dc285b9a197d6a2fc2932a3d9bd3854c023..47081a9f51f91861bca6d91f30fc7e474ff8aa14 100644 --- a/core/modules/migrate_drupal_multilingual/migrate_drupal_multilingual.info.yml +++ b/core/modules/migrate_drupal_multilingual/migrate_drupal_multilingual.info.yml @@ -2,6 +2,5 @@ name: 'Migrate Drupal Multilingual' type: module description: 'Provides a requirement for multilingual migrations.' package: 'Core (Experimental)' -core: 8.x dependencies: - migrate_drupal diff --git a/core/modules/migrate_drupal_ui/migrate_drupal_ui.info.yml b/core/modules/migrate_drupal_ui/migrate_drupal_ui.info.yml index 8d39c65e3e2b53a20af08dcdc52d832fd73a29dc..1ddccc51f02307a0fe837c083a734468cdcd6bb4 100644 --- a/core/modules/migrate_drupal_ui/migrate_drupal_ui.info.yml +++ b/core/modules/migrate_drupal_ui/migrate_drupal_ui.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a user interface for migrating from older Drupal versions.' package: Migration version: VERSION -core: 8.x configure: migrate_drupal_ui.upgrade dependencies: - drupal:migrate diff --git a/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.info.yml b/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.info.yml index 49b7dce9b5fb25a5e1fcde6c37ff9eb2103315ab..f322b952e360227d44321dcf32b473e0fca55559 100644 --- a/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.info.yml +++ b/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Add a migration missing a source and destination migration provider and a source plugin missing a migration provider.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/node.info.yml b/core/modules/node/node.info.yml index 88cba8572bf71d8b2bb27f520006917f3ae70e61..e40d59449c581321188705cf4418df1000d7b953 100644 --- a/core/modules/node/node.info.yml +++ b/core/modules/node/node.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows content to be submitted to the site and displayed on pages.' package: Core version: VERSION -core: 8.x configure: entity.node_type.collection dependencies: - drupal:text diff --git a/core/modules/node/tests/modules/node_access_test/node_access_test.info.yml b/core/modules/node/tests/modules/node_access_test/node_access_test.info.yml index f63cdd659a3c7635f9df8214e7212720f445caa1..f78d27484f5ebb129f01016f4af4d2ab3e34748d 100644 --- a/core/modules/node/tests/modules/node_access_test/node_access_test.info.yml +++ b/core/modules/node/tests/modules/node_access_test/node_access_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node permission testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/tests/modules/node_access_test_empty/node_access_test_empty.info.yml b/core/modules/node/tests/modules/node_access_test_empty/node_access_test_empty.info.yml index 8daafc25a759fe31ed939c4f2e8c58b596ee0d8a..f01360be426686d7f5f876b3b47cc46a18832f9a 100644 --- a/core/modules/node/tests/modules/node_access_test_empty/node_access_test_empty.info.yml +++ b/core/modules/node/tests/modules/node_access_test_empty/node_access_test_empty.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node permission testing. Provides empty grants hook implementations.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.info.yml b/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.info.yml index aeec3489292d5988baa0839ce48bc2fd7139c1f1..29daa2216e58f75bdc23b2443722537f95cac8ff 100644 --- a/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.info.yml +++ b/core/modules/node/tests/modules/node_access_test_language/node_access_test_language.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for language-aware node access testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:options diff --git a/core/modules/node/tests/modules/node_display_configurable_test/node_display_configurable_test.info.yml b/core/modules/node/tests/modules/node_display_configurable_test/node_display_configurable_test.info.yml index c6b478d27135a6c630a087d7f97cbd5da59395d9..3ad5d21581fdc1b5ffa718e03f36493cbbb0442b 100644 --- a/core/modules/node/tests/modules/node_display_configurable_test/node_display_configurable_test.info.yml +++ b/core/modules/node/tests/modules/node_display_configurable_test/node_display_configurable_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node \Drupal\Core\Field\BaseFieldDefinition::setDisplayConfigurable() testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/tests/modules/node_test/node_test.info.yml b/core/modules/node/tests/modules/node_test/node_test.info.yml index 952456fe25bc01660dd9244f39a561bf6faf32cc..a0dbdb40d42c4d1740eaa1508b980e8ca5e467b0 100644 --- a/core/modules/node/tests/modules/node_test/node_test.info.yml +++ b/core/modules/node/tests/modules/node_test/node_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node related testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/tests/modules/node_test_config/node_test_config.info.yml b/core/modules/node/tests/modules/node_test_config/node_test_config.info.yml index c7e7665704a88101ffe74dcb18b729eb30c8e527..a678b5da5b787d432df0395d289c6d599b1dc4e1 100644 --- a/core/modules/node/tests/modules/node_test_config/node_test_config.info.yml +++ b/core/modules/node/tests/modules/node_test_config/node_test_config.info.yml @@ -1,6 +1,5 @@ name: 'Node configuration tests' type: module description: 'Support module for node configuration tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/node/tests/modules/node_test_exception/node_test_exception.info.yml b/core/modules/node/tests/modules/node_test_exception/node_test_exception.info.yml index fac3fe7975bdae4c25766cc35044f7998c2186e8..64ea75c7b8f5b6ad3e07457aa717730a2fd01f09 100644 --- a/core/modules/node/tests/modules/node_test_exception/node_test_exception.info.yml +++ b/core/modules/node/tests/modules/node_test_exception/node_test_exception.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node related exception testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/node/tests/modules/node_test_views/node_test_views.info.yml b/core/modules/node/tests/modules/node_test_views/node_test_views.info.yml index a6ded4659c634534bc265332e30f001da727eadd..031e3a85bcb63aed8d5d6729a07ce903cc373c26 100644 --- a/core/modules/node/tests/modules/node_test_views/node_test_views.info.yml +++ b/core/modules/node/tests/modules/node_test_views/node_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views node tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:node - drupal:views diff --git a/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.info.yml b/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.info.yml index 49a990d751476ea48b816757f1bd77ca36bd9324..4898580f618663ae03d8c33eabcc92f61ff5a0b5 100644 --- a/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.info.yml +++ b/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for node permission testing. Provides a route which does a node access query without explicitly specifying the corresponding cache context.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/options/options.info.yml b/core/modules/options/options.info.yml index 41c5374a40e3385fdd65b224da72beaf32672b94..7bbda37669593acbe21696c6d4136678ed854729 100644 --- a/core/modules/options/options.info.yml +++ b/core/modules/options/options.info.yml @@ -3,7 +3,6 @@ type: module description: 'Defines selection, check box and radio button widgets for text and numeric fields.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:field - drupal:text diff --git a/core/modules/options/tests/options_config_install_test/options_config_install_test.info.yml b/core/modules/options/tests/options_config_install_test/options_config_install_test.info.yml index f88d03c50d7e4c38c3258d423e91c74725493f28..f25e7b481b31f731a7fdf95e0965abeadd2fea1f 100644 --- a/core/modules/options/tests/options_config_install_test/options_config_install_test.info.yml +++ b/core/modules/options/tests/options_config_install_test/options_config_install_test.info.yml @@ -1,7 +1,6 @@ name: 'Options config install test' type: module description: 'Support module for the Options module tests.' -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/options/tests/options_test/options_test.info.yml b/core/modules/options/tests/options_test/options_test.info.yml index add43a422cb3cde8de6559863a78ec9abbee542d..71d510f8a50defec150ebb74a94f3cdd58c4b3fd 100644 --- a/core/modules/options/tests/options_test/options_test.info.yml +++ b/core/modules/options/tests/options_test/options_test.info.yml @@ -1,6 +1,5 @@ name: 'Options test' type: module description: 'Support module for the Options module tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/options/tests/options_test_views/options_test_views.info.yml b/core/modules/options/tests/options_test_views/options_test_views.info.yml index d74ab19a08fbe56133bd47056541df2fd853df39..bf5fca2c8c44fe159830839be0b429d6390aafcc 100644 --- a/core/modules/options/tests/options_test_views/options_test_views.info.yml +++ b/core/modules/options/tests/options_test_views/options_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views options tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:options - drupal:views diff --git a/core/modules/page_cache/page_cache.info.yml b/core/modules/page_cache/page_cache.info.yml index ba18ed638c019f6fd6d57a713b0ae838feb21e6a..17cb285ddfe3962ed3a9bff5079d857fdae372ad 100644 --- a/core/modules/page_cache/page_cache.info.yml +++ b/core/modules/page_cache/page_cache.info.yml @@ -3,4 +3,3 @@ type: module description: 'Caches pages for anonymous users. Use when an external page cache is not available.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/page_cache/tests/modules/page_cache_form_test.info.yml b/core/modules/page_cache/tests/modules/page_cache_form_test.info.yml index e18bb53498b420408e4bcf05f5a010c882a93344..f8af660d35ac3fa45c2f0ba1c212e857ea69e837 100644 --- a/core/modules/page_cache/tests/modules/page_cache_form_test.info.yml +++ b/core/modules/page_cache/tests/modules/page_cache_form_test.info.yml @@ -1,6 +1,5 @@ name: 'Page Cache Form Test' type: module description: 'Support module for the Page Cache module tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/path/path.info.yml b/core/modules/path/path.info.yml index 7862684aa8f2245ad20525fb72991fa416217787..2c3f23fcb508cc73f8011faa9466d37e34d2c339 100644 --- a/core/modules/path/path.info.yml +++ b/core/modules/path/path.info.yml @@ -3,5 +3,4 @@ type: module description: 'Allows users to rename URLs.' package: Core version: VERSION -core: 8.x configure: entity.path_alias.collection diff --git a/core/modules/quickedit/quickedit.info.yml b/core/modules/quickedit/quickedit.info.yml index b9fc765d214cb518654f694628bdee6d9b946fff..12a3084a4570f12a2b59126702899c13945fc002 100644 --- a/core/modules/quickedit/quickedit.info.yml +++ b/core/modules/quickedit/quickedit.info.yml @@ -2,7 +2,6 @@ name: Quick Edit type: module description: 'In-place content editing.' package: Core -core: 8.x version: VERSION dependencies: - drupal:contextual diff --git a/core/modules/quickedit/tests/modules/quickedit_test.info.yml b/core/modules/quickedit/tests/modules/quickedit_test.info.yml index fe21dc5b9b1e632fb9b1ec52fcfa98414de88e8d..1af27d5dec92d315d471d3f869da1574b093df9e 100644 --- a/core/modules/quickedit/tests/modules/quickedit_test.info.yml +++ b/core/modules/quickedit/tests/modules/quickedit_test.info.yml @@ -1,6 +1,5 @@ name: 'Quick Edit test' type: module description: 'Support module for the Quick Edit module tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/rdf/rdf.info.yml b/core/modules/rdf/rdf.info.yml index ec1b50905bd3d2f718f3e47da0bbd016a486615b..8f71af475166a62ddb4dd4344f4174c37e6efe63 100644 --- a/core/modules/rdf/rdf.info.yml +++ b/core/modules/rdf/rdf.info.yml @@ -3,4 +3,3 @@ type: module description: 'Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.' package: Core version: VERSION -core: 8.x diff --git a/core/modules/rdf/tests/rdf_conflicting_namespaces/rdf_conflicting_namespaces.info.yml b/core/modules/rdf/tests/rdf_conflicting_namespaces/rdf_conflicting_namespaces.info.yml index bef342f563a5d9278c256f7b003dd8485842b44d..0ad1a1279782d8292e7036a6042ff57cbb2f1d9c 100644 --- a/core/modules/rdf/tests/rdf_conflicting_namespaces/rdf_conflicting_namespaces.info.yml +++ b/core/modules/rdf/tests/rdf_conflicting_namespaces/rdf_conflicting_namespaces.info.yml @@ -3,6 +3,5 @@ type: module description: 'Test conflicting namespace declaration.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:rdf diff --git a/core/modules/rdf/tests/rdf_test/rdf_test.info.yml b/core/modules/rdf/tests/rdf_test/rdf_test.info.yml index 9e6a16bcc693b53df2aa31afb7014c01421a2983..69f5c889fb9b27918067d296a0411328a17c1528 100644 --- a/core/modules/rdf/tests/rdf_test/rdf_test.info.yml +++ b/core/modules/rdf/tests/rdf_test/rdf_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Test functionality for the RDF module.' package: Testing version: VERSION -core: 8.x dependencies: - rdf diff --git a/core/modules/rdf/tests/rdf_test_namespaces/rdf_test_namespaces.info.yml b/core/modules/rdf/tests/rdf_test_namespaces/rdf_test_namespaces.info.yml index 0856b970223e46d69d62ba50e3fb7cd740c24183..109c363fc3274b683a6f9577d3a1732f21906786 100644 --- a/core/modules/rdf/tests/rdf_test_namespaces/rdf_test_namespaces.info.yml +++ b/core/modules/rdf/tests/rdf_test_namespaces/rdf_test_namespaces.info.yml @@ -3,6 +3,5 @@ type: module description: 'Test namespace declaration.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:rdf diff --git a/core/modules/responsive_image/responsive_image.info.yml b/core/modules/responsive_image/responsive_image.info.yml index 8ddf2c72e569116d11143ef1a1ee2f83b9f09f46..ea2fac35c739bfc1dd30030575e4abca6521fcf7 100644 --- a/core/modules/responsive_image/responsive_image.info.yml +++ b/core/modules/responsive_image/responsive_image.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides an image formatter and breakpoint mappings to output responsive images using the HTML5 picture tag.' package: Core version: VERSION -core: 8.x dependencies: - drupal:breakpoint - drupal:image diff --git a/core/modules/responsive_image/tests/modules/responsive_image_test_module/responsive_image_test_module.info.yml b/core/modules/responsive_image/tests/modules/responsive_image_test_module/responsive_image_test_module.info.yml index 694e2dd9d6c0d1de7dd727b02ec02284dcab44f0..4fd3f3a77f93cc2454def64a08ac2c180bfad8d3 100644 --- a/core/modules/responsive_image/tests/modules/responsive_image_test_module/responsive_image_test_module.info.yml +++ b/core/modules/responsive_image/tests/modules/responsive_image_test_module/responsive_image_test_module.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test theme for responsive image.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/rest/rest.info.yml b/core/modules/rest/rest.info.yml index 8a4572ab36b374176079dcc6fa372bfa9460103d..b51ea6149e635e4aa66b69f8e2214e4df8e65f1e 100644 --- a/core/modules/rest/rest.info.yml +++ b/core/modules/rest/rest.info.yml @@ -3,6 +3,5 @@ type: module description: 'Exposes entities and other resources as RESTful web API' package: Web services version: VERSION -core: 8.x dependencies: - drupal:serialization diff --git a/core/modules/rest/tests/modules/config_test_rest/config_test_rest.info.yml b/core/modules/rest/tests/modules/config_test_rest/config_test_rest.info.yml index b3af0b66388bd3ee369853da0957826e7a73127b..7e47d2bc3b0f330d49a2964db6d8d1e5d7c28596 100644 --- a/core/modules/rest/tests/modules/config_test_rest/config_test_rest.info.yml +++ b/core/modules/rest/tests/modules/config_test_rest/config_test_rest.info.yml @@ -2,6 +2,5 @@ name: 'Configuration test REST' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:config_test diff --git a/core/modules/rest/tests/modules/rest_test/rest_test.info.yml b/core/modules/rest/tests/modules/rest_test/rest_test.info.yml index 82282ee537cbcc4720b0a19a7045354a325995fb..e6bc0622acfde6eb9735e8f86c63217c73cf6a6e 100644 --- a/core/modules/rest/tests/modules/rest_test/rest_test.info.yml +++ b/core/modules/rest/tests/modules/rest_test/rest_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test hooks and resources for REST module.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/rest/tests/modules/rest_test_views/rest_test_views.info.yml b/core/modules/rest/tests/modules/rest_test_views/rest_test_views.info.yml index 005af649e3203b5dc72420da50bd67141136015a..d3b9c7699b52ba0a0a62da24ad675be2a75b8695 100644 --- a/core/modules/rest/tests/modules/rest_test_views/rest_test_views.info.yml +++ b/core/modules/rest/tests/modules/rest_test_views/rest_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views REST tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:rest - drupal:views diff --git a/core/modules/search/search.info.yml b/core/modules/search/search.info.yml index 97b7d3fe7731e4ba8f43d905d91a877fd1bd8ba5..7b8198d062cde210f0c2b471ddec07881a6e0837 100644 --- a/core/modules/search/search.info.yml +++ b/core/modules/search/search.info.yml @@ -3,5 +3,4 @@ type: module description: 'Enables site-wide keyword searching.' package: Core version: VERSION -core: 8.x configure: entity.search_page.collection diff --git a/core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.info.yml b/core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.info.yml index 5b573478b4f5986193a76b895d747ffe5882d5cc..476310024ba49db9ff9400c1e8c8cb6095ed5ee9 100644 --- a/core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.info.yml +++ b/core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test module that adds date conditions to node searches.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/search/tests/modules/search_embedded_form/search_embedded_form.info.yml b/core/modules/search/tests/modules/search_embedded_form/search_embedded_form.info.yml index 0df41aa09452bb1500bc8696263d1564b6bb688d..7adf91bfcfdcb488904d3147fb0fc30de8d7d4d1 100644 --- a/core/modules/search/tests/modules/search_embedded_form/search_embedded_form.info.yml +++ b/core/modules/search/tests/modules/search_embedded_form/search_embedded_form.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Search module testing of embedded forms.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/search/tests/modules/search_extra_type/search_extra_type.info.yml b/core/modules/search/tests/modules/search_extra_type/search_extra_type.info.yml index 8f4c8a4c999ca33995743b3f41715865900d4a35..2d59bc5da2d1f7108420c09a3b7e2ac71a5b0179 100644 --- a/core/modules/search/tests/modules/search_extra_type/search_extra_type.info.yml +++ b/core/modules/search/tests/modules/search_extra_type/search_extra_type.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for Search module testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:test_page_test diff --git a/core/modules/search/tests/modules/search_langcode_test/search_langcode_test.info.yml b/core/modules/search/tests/modules/search_langcode_test/search_langcode_test.info.yml index da34c5fa1bd6d432955ffd6e3daf4f77a90da5a2..def3c18388b1e3210a99c058f4f2cf9fdb20da3e 100644 --- a/core/modules/search/tests/modules/search_langcode_test/search_langcode_test.info.yml +++ b/core/modules/search/tests/modules/search_langcode_test/search_langcode_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for search module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/search/tests/modules/search_query_alter/search_query_alter.info.yml b/core/modules/search/tests/modules/search_query_alter/search_query_alter.info.yml index 8c6a3d824cdef10156b39a110df596da23ed0682..976cdd047b1e5fbc041106f172f55ccf088c68d3 100644 --- a/core/modules/search/tests/modules/search_query_alter/search_query_alter.info.yml +++ b/core/modules/search/tests/modules/search_query_alter/search_query_alter.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Search module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/serialization/serialization.info.yml b/core/modules/serialization/serialization.info.yml index be8d3404c013ed61dcdd275663784ebff620b25e..23c5c54df665ec8c02909cbae397f172f816a7b3 100644 --- a/core/modules/serialization/serialization.info.yml +++ b/core/modules/serialization/serialization.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides a service for (de)serializing data to/from formats such as JSON and XML.' package: Web services version: VERSION -core: 8.x diff --git a/core/modules/serialization/tests/modules/entity_serialization_test/entity_serialization_test.info.yml b/core/modules/serialization/tests/modules/entity_serialization_test/entity_serialization_test.info.yml index 451a3748e2085fd142db741c29786e9e2c560744..e4da061d080fe899acd6597c4e2d6a1ba84f8c46 100644 --- a/core/modules/serialization/tests/modules/entity_serialization_test/entity_serialization_test.info.yml +++ b/core/modules/serialization/tests/modules/entity_serialization_test/entity_serialization_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test support for entity serialization tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/serialization/tests/modules/field_normalization_test/field_normalization_test.info.yml b/core/modules/serialization/tests/modules/field_normalization_test/field_normalization_test.info.yml index 4ba215ecbace96073e3915ac6fb9b3faba515fff..43534bcf5333cd0be7305e7840fd0eace33e62e8 100644 --- a/core/modules/serialization/tests/modules/field_normalization_test/field_normalization_test.info.yml +++ b/core/modules/serialization/tests/modules/field_normalization_test/field_normalization_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test support for fieldItem normalization test support.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/serialization/tests/modules/test_datatype_boolean_emoji_normalizer/test_datatype_boolean_emoji_normalizer.info.yml b/core/modules/serialization/tests/modules/test_datatype_boolean_emoji_normalizer/test_datatype_boolean_emoji_normalizer.info.yml index 0dabae3780b8eb163bdd3067d4a4171215bba193..6acd5454f580e11b5ec4e03bf50b4892a142618d 100644 --- a/core/modules/serialization/tests/modules/test_datatype_boolean_emoji_normalizer/test_datatype_boolean_emoji_normalizer.info.yml +++ b/core/modules/serialization/tests/modules/test_datatype_boolean_emoji_normalizer/test_datatype_boolean_emoji_normalizer.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test support for @DataType-level normalization.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/serialization/tests/modules/test_fieldtype_boolean_emoji_normalizer/test_fieldtype_boolean_emoji_normalizer.info.yml b/core/modules/serialization/tests/modules/test_fieldtype_boolean_emoji_normalizer/test_fieldtype_boolean_emoji_normalizer.info.yml index e6fa9991862bf91d06a4dc62b5f4e702ccb340ac..ac5d781cddf23b6b6f7bf41efed64e593978fdad 100644 --- a/core/modules/serialization/tests/modules/test_fieldtype_boolean_emoji_normalizer/test_fieldtype_boolean_emoji_normalizer.info.yml +++ b/core/modules/serialization/tests/modules/test_fieldtype_boolean_emoji_normalizer/test_fieldtype_boolean_emoji_normalizer.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides test support for @FieldType-level normalization.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/serialization/tests/serialization_test/serialization_test.info.yml b/core/modules/serialization/tests/serialization_test/serialization_test.info.yml index d6c01304ce820cdaf94ff0c3d71a01775cbd6400..f439435c584dc43e4bcf29a5dc8b7789d7dac927 100644 --- a/core/modules/serialization/tests/serialization_test/serialization_test.info.yml +++ b/core/modules/serialization/tests/serialization_test/serialization_test.info.yml @@ -3,4 +3,3 @@ type: module description: "Support module for serialization tests." package: Testing version: VERSION -core: 8.x diff --git a/core/modules/settings_tray/settings_tray.info.yml b/core/modules/settings_tray/settings_tray.info.yml index 8747d17af312d3336d80ce6730a7d1b41e2b5621..13f9a152dcd8a4ced63338e64afdd75d26fd7091 100644 --- a/core/modules/settings_tray/settings_tray.info.yml +++ b/core/modules/settings_tray/settings_tray.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows users to directly edit the configuration of blocks on the current page.' package: Core version: VERSION -core: 8.x dependencies: - drupal:block - drupal:toolbar diff --git a/core/modules/settings_tray/tests/modules/settings_tray_override_test/settings_tray_override_test.info.yml b/core/modules/settings_tray/tests/modules/settings_tray_override_test/settings_tray_override_test.info.yml index 551451800055f98b83d1973e13b571aae68c3c6e..aacb0beeb44889e7d5e18426969f467909b3fb2d 100644 --- a/core/modules/settings_tray/tests/modules/settings_tray_override_test/settings_tray_override_test.info.yml +++ b/core/modules/settings_tray/tests/modules/settings_tray_override_test/settings_tray_override_test.info.yml @@ -2,6 +2,5 @@ name: 'Configuration override test for Settings Tray' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:settings_tray diff --git a/core/modules/settings_tray/tests/modules/settings_tray_test/settings_tray_test.info.yml b/core/modules/settings_tray/tests/modules/settings_tray_test/settings_tray_test.info.yml index e8818867e1f2b3c6ea672b2d9172b4dcbc7dd9ca..9f8dafda83c4f901666e6d9fbd2606deb54ea905 100644 --- a/core/modules/settings_tray/tests/modules/settings_tray_test/settings_tray_test.info.yml +++ b/core/modules/settings_tray/tests/modules/settings_tray_test/settings_tray_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides Settings Tray test functionality.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:block - drupal:settings_tray diff --git a/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.info.yml b/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.info.yml index edc5a9dde5a75f8678eb8f11edc4a64d46db4f79..90155770b7ad781fdae2049820fd7a570b049a30 100644 --- a/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.info.yml +++ b/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides CSS fixes for tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:settings_tray diff --git a/core/modules/shortcut/shortcut.info.yml b/core/modules/shortcut/shortcut.info.yml index 8546317e104a9d2ea95ab0671a22b639b41de174..8f209f4e3e68571313d2076eab4f06afdbcba491 100644 --- a/core/modules/shortcut/shortcut.info.yml +++ b/core/modules/shortcut/shortcut.info.yml @@ -3,7 +3,6 @@ type: module description: 'Allows users to manage customizable lists of shortcut links.' package: Core version: VERSION -core: 8.x configure: entity.shortcut_set.collection dependencies: - drupal:link diff --git a/core/modules/simpletest/simpletest.info.yml b/core/modules/simpletest/simpletest.info.yml index 232680e7cf0b6993485a8da538c7f3428bc3944f..7304759932ec91788846f0c2f5f868a6351feab6 100644 --- a/core/modules/simpletest/simpletest.info.yml +++ b/core/modules/simpletest/simpletest.info.yml @@ -3,5 +3,4 @@ type: module description: 'Provides a framework for unit and functional testing.' package: Core version: VERSION -core: 8.x configure: simpletest.settings diff --git a/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.info.yml b/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.info.yml index 2cb995bd85617d00c1470748c37e1c54912521ef..ab5d1f278f1938d8b222598c733e8931f961e147 100644 --- a/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.info.yml +++ b/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Simpletest deprecation tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/statistics/statistics.info.yml b/core/modules/statistics/statistics.info.yml index 84a50bec9a812cdf27c11655fa134b45fe914e11..d1ee0ca5c012d3928f8e19a4b563c7fcd98faae4 100644 --- a/core/modules/statistics/statistics.info.yml +++ b/core/modules/statistics/statistics.info.yml @@ -3,7 +3,6 @@ type: module description: 'Logs content statistics for your site.' package: Core version: VERSION -core: 8.x configure: statistics.settings dependencies: - drupal:node diff --git a/core/modules/statistics/tests/modules/statistics_test_views/statistics_test_views.info.yml b/core/modules/statistics/tests/modules/statistics_test_views/statistics_test_views.info.yml index beaf8e94a3afb014b38b7977698664c3213b915f..12265f63571d86d692c51bee4c229bac03e5d85a 100644 --- a/core/modules/statistics/tests/modules/statistics_test_views/statistics_test_views.info.yml +++ b/core/modules/statistics/tests/modules/statistics_test_views/statistics_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views statistics tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:statistics - drupal:views diff --git a/core/modules/statistics/tests/themes/statistics_test_attached/statistics_test_attached.info.yml b/core/modules/statistics/tests/themes/statistics_test_attached/statistics_test_attached.info.yml index c3144edef1e4c6ba9fec97afd9e771614c839dbb..4156318430450b5790747bc0755dab02eef330cd 100644 --- a/core/modules/statistics/tests/themes/statistics_test_attached/statistics_test_attached.info.yml +++ b/core/modules/statistics/tests/themes/statistics_test_attached/statistics_test_attached.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Theme for testing attached library' version: VERSION -core: 8.x diff --git a/core/modules/syslog/syslog.info.yml b/core/modules/syslog/syslog.info.yml index 1d8dc8f1b690dc2c78322645a9c1b5b37c3c0b91..044de023e382ad7127e8822b013ddd93517105c3 100644 --- a/core/modules/syslog/syslog.info.yml +++ b/core/modules/syslog/syslog.info.yml @@ -3,5 +3,4 @@ type: module description: 'Logs and records system events to syslog.' package: Core version: VERSION -core: 8.x configure: system.logging_settings diff --git a/core/modules/syslog/tests/modules/syslog_test/syslog_test.info.yml b/core/modules/syslog/tests/modules/syslog_test/syslog_test.info.yml index cac4de2a5e0d94a334949cab1f9f2ae0142951a5..0a3cb5f9b17427b471061b3661dce7347b852e83 100644 --- a/core/modules/syslog/tests/modules/syslog_test/syslog_test.info.yml +++ b/core/modules/syslog/tests/modules/syslog_test/syslog_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides a test logger for syslog module.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:syslog diff --git a/core/modules/system/system.info.yml b/core/modules/system/system.info.yml index 1f2a0644845ebdb2809b7c98d7ebca919999ab4f..ffdf1850ce667047d46a109475db3fc1e85b9972 100644 --- a/core/modules/system/system.info.yml +++ b/core/modules/system/system.info.yml @@ -3,6 +3,5 @@ type: module description: 'Handles general site configuration for administrators.' package: Core version: VERSION -core: 8.x required: true configure: system.admin_config_system diff --git a/core/modules/system/tests/modules/accept_header_routing_test/accept_header_routing_test.info.yml b/core/modules/system/tests/modules/accept_header_routing_test/accept_header_routing_test.info.yml index 2c678356c0e9f90f144cd1418f1319f70e838acc..c0483dbeb0835ea4f7ddc35777376d4e6dc0f04b 100644 --- a/core/modules/system/tests/modules/accept_header_routing_test/accept_header_routing_test.info.yml +++ b/core/modules/system/tests/modules/accept_header_routing_test/accept_header_routing_test.info.yml @@ -1,5 +1,4 @@ name: Accept header based routing test -core: 8.x type: module package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/action_test/action_test.info.yml b/core/modules/system/tests/modules/action_test/action_test.info.yml index 7cefe06e0a9e9e1248d16a210f63a6982d3acee4..328b2cc01c2ff4672809ce9b363838dc022d254d 100644 --- a/core/modules/system/tests/modules/action_test/action_test.info.yml +++ b/core/modules/system/tests/modules/action_test/action_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for action testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.info.yml b/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.info.yml index ba31a29db8d5074779bb64d9b01b4781994f6d02..11141c906fd05a9c19b12c17990bbfd5e68e030a 100644 --- a/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.info.yml +++ b/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.info.yml @@ -1,6 +1,5 @@ name: 'AJAX form test mock module' type: module description: 'Test for AJAX form calls.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/ajax_test/ajax_test.info.yml b/core/modules/system/tests/modules/ajax_test/ajax_test.info.yml index dbd359664b1c2957736a3281b78c2d1f971ce026..2fa40fce19205686da82b415e74f715f206bce1d 100644 --- a/core/modules/system/tests/modules/ajax_test/ajax_test.info.yml +++ b/core/modules/system/tests/modules/ajax_test/ajax_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for AJAX framework tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:contact diff --git a/core/modules/system/tests/modules/batch_test/batch_test.info.yml b/core/modules/system/tests/modules/batch_test/batch_test.info.yml index 072017e72cb0be468ef010aedfaeb13c44b3587b..988410c34be7257d5070bf834a802e7547d73f00 100644 --- a/core/modules/system/tests/modules/batch_test/batch_test.info.yml +++ b/core/modules/system/tests/modules/batch_test/batch_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Batch API tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/cache_test/cache_test.info.yml b/core/modules/system/tests/modules/cache_test/cache_test.info.yml index 329e0d6617c0ca7eeab4d29f0e01688b19c98bb9..822e07a6d3ac6f67bb22794bdc4562b23ee7dda3 100644 --- a/core/modules/system/tests/modules/cache_test/cache_test.info.yml +++ b/core/modules/system/tests/modules/cache_test/cache_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for cache system testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/common_test/common_test.info.yml b/core/modules/system/tests/modules/common_test/common_test.info.yml index 2efb155b931dd66f211c2986372cdb4fb4cd3c04..a03e117444deb819717857786089301076c8a8c7 100644 --- a/core/modules/system/tests/modules/common_test/common_test.info.yml +++ b/core/modules/system/tests/modules/common_test/common_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Common tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/common_test_cron_helper/common_test_cron_helper.info.yml b/core/modules/system/tests/modules/common_test_cron_helper/common_test_cron_helper.info.yml index 5d1ab7f6d44e069857cd03da884e2823b0fb1bc1..a76e6a8eaa2a7cc289efc6fe369d2bd00e8aeb04 100644 --- a/core/modules/system/tests/modules/common_test_cron_helper/common_test_cron_helper.info.yml +++ b/core/modules/system/tests/modules/common_test_cron_helper/common_test_cron_helper.info.yml @@ -3,4 +3,3 @@ type: module description: 'Helper module for CronRunTestCase::testCronExceptions().' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/condition_test/condition_test.info.yml b/core/modules/system/tests/modules/condition_test/condition_test.info.yml index b664502411a5776b7f42c5b94e11f660ee64f7eb..e42daa6f78f51cf8e52757b7047523a2b4950d12 100644 --- a/core/modules/system/tests/modules/condition_test/condition_test.info.yml +++ b/core/modules/system/tests/modules/condition_test/condition_test.info.yml @@ -3,4 +3,3 @@ type: module description: "Test general form component for condition plugins." package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/conneg_test/conneg_test.info.yml b/core/modules/system/tests/modules/conneg_test/conneg_test.info.yml index 256ddf43f4d69d8c7fb0b00c4f4f4b5803e68d20..44692280ddf1ac98ee156b2e7d03b9e7ee76a560 100644 --- a/core/modules/system/tests/modules/conneg_test/conneg_test.info.yml +++ b/core/modules/system/tests/modules/conneg_test/conneg_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support testing content negotiation variations.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/cron_queue_test/cron_queue_test.info.yml b/core/modules/system/tests/modules/cron_queue_test/cron_queue_test.info.yml index 014e9188cba86fa0853f3e5077fb85fff7724c7f..aab4a604c7ed7195c57d1fe969524faf9259338c 100644 --- a/core/modules/system/tests/modules/cron_queue_test/cron_queue_test.info.yml +++ b/core/modules/system/tests/modules/cron_queue_test/cron_queue_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for the cron queue runner.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/csrf_test/csrf_test.info.yml b/core/modules/system/tests/modules/csrf_test/csrf_test.info.yml index c830f5840271b5e5f0e7cc20cef80019ac9f443f..13d638037e1abb0269d0276f98e3a5f3655c01a4 100644 --- a/core/modules/system/tests/modules/csrf_test/csrf_test.info.yml +++ b/core/modules/system/tests/modules/csrf_test/csrf_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support testing protecting routes with CSRF token.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/css_disable_transitions_test/css_disable_transitions_test.info.yml b/core/modules/system/tests/modules/css_disable_transitions_test/css_disable_transitions_test.info.yml index 436b022dba48da6f538b6f9f1a915499afb0be88..0485fc2d2e964bc10d3574faa130d17dd3149249 100644 --- a/core/modules/system/tests/modules/css_disable_transitions_test/css_disable_transitions_test.info.yml +++ b/core/modules/system/tests/modules/css_disable_transitions_test/css_disable_transitions_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Disables CSS animations for tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/database_test/database_test.info.yml b/core/modules/system/tests/modules/database_test/database_test.info.yml index 92cea84c6304f8c69efb59ac1f19ba4fbc80427a..48d38907eeb0efe6c70d04ad27a3b90498b0dc7b 100644 --- a/core/modules/system/tests/modules/database_test/database_test.info.yml +++ b/core/modules/system/tests/modules/database_test/database_test.info.yml @@ -1,6 +1,5 @@ name: 'Database Test' type: module description: 'Support module for Database layer tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/default_format_test/default_format_test.info.yml b/core/modules/system/tests/modules/default_format_test/default_format_test.info.yml index 0a02a0688a13c6fd65a7b5bae41db85af4c261eb..3ef7a57a543b4be11bce5142109f876795e8358f 100644 --- a/core/modules/system/tests/modules/default_format_test/default_format_test.info.yml +++ b/core/modules/system/tests/modules/default_format_test/default_format_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing default route format.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/deprecation_test/deprecation_test.info.yml b/core/modules/system/tests/modules/deprecation_test/deprecation_test.info.yml index 5b289513caedd108baf6b3e29aa01095daae993f..5d33084a5390df6a15e5f34ff35013470fc0c64a 100644 --- a/core/modules/system/tests/modules/deprecation_test/deprecation_test.info.yml +++ b/core/modules/system/tests/modules/deprecation_test/deprecation_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing deprecation behaviors.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.info.yml b/core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.info.yml index 8dde142ae3dc4e35d863987a7833ae870bab4efb..c1bceb8e0fd3c032dfa0d824f2c24f546b04ac0f 100644 --- a/core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.info.yml +++ b/core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.info.yml @@ -1,6 +1,5 @@ name: 'Dialog Renderer Test' type: module description: 'Support module for Dialog Renderer tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/display_variant_test/display_variant_test.info.yml b/core/modules/system/tests/modules/display_variant_test/display_variant_test.info.yml index 53e543c3a354d39fe90393169ebe23b1e792f97c..9ba5bcb514bcce60e0b1618e388c567d28df23f5 100644 --- a/core/modules/system/tests/modules/display_variant_test/display_variant_test.info.yml +++ b/core/modules/system/tests/modules/display_variant_test/display_variant_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing display variants.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml b/core/modules/system/tests/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml index 30bccf712226980c97364c779664f670b4fa046a..78a297633a8ff8749540917b90786dc3d45ea751 100644 --- a/core/modules/system/tests/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml +++ b/core/modules/system/tests/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing the drupal_system_listing function.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.info.yml b/core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.info.yml index 44ab452475cc31aec95b188a12e3aa65375c68e7..a1a6b1431976b44dec4bd2cfed3cf4f53436e7ce 100644 --- a/core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.info.yml +++ b/core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for EarlyRenderingControllerTest.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/element_info_test/element_info_test.info.yml b/core/modules/system/tests/modules/element_info_test/element_info_test.info.yml index 9e43148ee610038e9459d9f960a56dd9fd2bded2..6e18fb144b156ccfd48935a78599cf09b6f588fa 100644 --- a/core/modules/system/tests/modules/element_info_test/element_info_test.info.yml +++ b/core/modules/system/tests/modules/element_info_test/element_info_test.info.yml @@ -2,4 +2,3 @@ name: 'Element info test' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/entity_crud_hook_test/entity_crud_hook_test.info.yml b/core/modules/system/tests/modules/entity_crud_hook_test/entity_crud_hook_test.info.yml index 7d35503993e47ca20bb781da049a5d9d318e74d4..b520195399b78935b9bf3084570c903dc072e3a5 100644 --- a/core/modules/system/tests/modules/entity_crud_hook_test/entity_crud_hook_test.info.yml +++ b/core/modules/system/tests/modules/entity_crud_hook_test/entity_crud_hook_test.info.yml @@ -1,6 +1,5 @@ name: 'Entity CRUD Hooks Test' type: module description: 'Support module for CRUD hook tests.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/entity_reference_test/entity_reference_test.info.yml b/core/modules/system/tests/modules/entity_reference_test/entity_reference_test.info.yml index d617a0f6dd18db44a9980ccf8e715d19ba632d13..ca18bb401337e1f9bec5777137bf277e7ca11947 100644 --- a/core/modules/system/tests/modules/entity_reference_test/entity_reference_test.info.yml +++ b/core/modules/system/tests/modules/entity_reference_test/entity_reference_test.info.yml @@ -1,7 +1,6 @@ name: "Entity Reference Test" type: module description: "Support module for the Entity Reference tests." -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/system/tests/modules/entity_reference_test_views/entity_reference_test_views.info.yml b/core/modules/system/tests/modules/entity_reference_test_views/entity_reference_test_views.info.yml index 0209b78e4cadd4a38d3e95cbb90628ba2aab834d..9222b57c3f02dd15db87219ee9977da54a8852b2 100644 --- a/core/modules/system/tests/modules/entity_reference_test_views/entity_reference_test_views.info.yml +++ b/core/modules/system/tests/modules/entity_reference_test_views/entity_reference_test_views.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides default views for views entity reference tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/system/tests/modules/entity_schema_test/entity_schema_test.info.yml b/core/modules/system/tests/modules/entity_schema_test/entity_schema_test.info.yml index b1d814255b69f054623ce58220d7e369dd3e239a..a26857c009e9bc681b1ef02a60569dbb0ef9615e 100644 --- a/core/modules/system/tests/modules/entity_schema_test/entity_schema_test.info.yml +++ b/core/modules/system/tests/modules/entity_schema_test/entity_schema_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides entity and field definitions to test entity schema.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test diff --git a/core/modules/system/tests/modules/entity_test/entity_test.info.yml b/core/modules/system/tests/modules/entity_test/entity_test.info.yml index 2f1859403dad5a34354f0a2f4bf8ec147e448623..abe33de89bb2f9587d3b62527008a3dce8a2be28 100644 --- a/core/modules/system/tests/modules/entity_test/entity_test.info.yml +++ b/core/modules/system/tests/modules/entity_test/entity_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides entity types based upon the CRUD API.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:field - drupal:text diff --git a/core/modules/system/tests/modules/entity_test_constraints/entity_test_constraints.info.yml b/core/modules/system/tests/modules/entity_test_constraints/entity_test_constraints.info.yml index c59ea9ae1bbda7e35c2ec2656e525dfad855606f..10edfaead100b7f448eec8b81e12fafdba1412aa 100644 --- a/core/modules/system/tests/modules/entity_test_constraints/entity_test_constraints.info.yml +++ b/core/modules/system/tests/modules/entity_test_constraints/entity_test_constraints.info.yml @@ -3,6 +3,5 @@ type: module description: 'Tests extending and altering entity constraints.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test diff --git a/core/modules/system/tests/modules/entity_test_extra/entity_test_extra.info.yml b/core/modules/system/tests/modules/entity_test_extra/entity_test_extra.info.yml index 9d6852eb99ae36c909fffe7956fc9155a8ca7d22..44a71abafb1468b576e77361c74aec2617698a18 100644 --- a/core/modules/system/tests/modules/entity_test_extra/entity_test_extra.info.yml +++ b/core/modules/system/tests/modules/entity_test_extra/entity_test_extra.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides extra fields for entity test entity types.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test diff --git a/core/modules/system/tests/modules/entity_test_operation/entity_test_operation.info.yml b/core/modules/system/tests/modules/entity_test_operation/entity_test_operation.info.yml index eb905d4f6fd9bb62749874494fd9c6f5c2a24832..9bfc699fb14c9757f205bf4636ff36fab680235c 100644 --- a/core/modules/system/tests/modules/entity_test_operation/entity_test_operation.info.yml +++ b/core/modules/system/tests/modules/entity_test_operation/entity_test_operation.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides a test operation to entities.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/entity_test_revlog/entity_test_revlog.info.yml b/core/modules/system/tests/modules/entity_test_revlog/entity_test_revlog.info.yml index 4afba6215fe02502f9fc4c6c31aab86bad502b43..aac7dce84b4244691ce9c87abe5513e0a538690f 100644 --- a/core/modules/system/tests/modules/entity_test_revlog/entity_test_revlog.info.yml +++ b/core/modules/system/tests/modules/entity_test_revlog/entity_test_revlog.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides two entity types with revision logging capabilities.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/entity_test_schema_converter/entity_test_schema_converter.info.yml b/core/modules/system/tests/modules/entity_test_schema_converter/entity_test_schema_converter.info.yml index 210ced83271365990316e7e36e5a9eaf45876893..c6291250ec1c111541743c01804fea7bda32af26 100644 --- a/core/modules/system/tests/modules/entity_test_schema_converter/entity_test_schema_converter.info.yml +++ b/core/modules/system/tests/modules/entity_test_schema_converter/entity_test_schema_converter.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides testing for the entity schema converter.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test_update diff --git a/core/modules/system/tests/modules/entity_test_third_party/entity_test_third_party.info.yml b/core/modules/system/tests/modules/entity_test_third_party/entity_test_third_party.info.yml index 00560c72e6bae98c4a17ab825e6ed652fb96a377..486808b462b9f49459254f6cd203900586a2c506 100644 --- a/core/modules/system/tests/modules/entity_test_third_party/entity_test_third_party.info.yml +++ b/core/modules/system/tests/modules/entity_test_third_party/entity_test_third_party.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides third-party settings for test entity types.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test diff --git a/core/modules/system/tests/modules/entity_test_update/entity_test_update.info.yml b/core/modules/system/tests/modules/entity_test_update/entity_test_update.info.yml index 330028a7a12c86b0afc7fef1c00e00b5a93f5a0b..def242322ca378753ab0b7ea0a24bcd9326d398c 100644 --- a/core/modules/system/tests/modules/entity_test_update/entity_test_update.info.yml +++ b/core/modules/system/tests/modules/entity_test_update/entity_test_update.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides an entity type for testing definition and schema updates.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/error_service_test/error_service_test.info.yml b/core/modules/system/tests/modules/error_service_test/error_service_test.info.yml index 6a5f99c40fa8ef674b011500b771281dc7d96106..2254edc4ed1fcedd6a1929a2e2d1b111a8fb6edb 100644 --- a/core/modules/system/tests/modules/error_service_test/error_service_test.info.yml +++ b/core/modules/system/tests/modules/error_service_test/error_service_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for causing bedlam in container rebuilds.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/error_test/error_test.info.yml b/core/modules/system/tests/modules/error_test/error_test.info.yml index f91c7b35706d5a487074a817ae2cc63878197074..e99ad643ca4cda9d7158c921ff36a55aa8fb0a24 100644 --- a/core/modules/system/tests/modules/error_test/error_test.info.yml +++ b/core/modules/system/tests/modules/error_test/error_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for error and exception testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/experimental_module_dependency_test/experimental_module_dependency_test.info.yml b/core/modules/system/tests/modules/experimental_module_dependency_test/experimental_module_dependency_test.info.yml index f84f616c40f78716960cb6e489dc47b077f31e59..aa33c96c67066e0a36ab124bdc6b3cc917cc424b 100644 --- a/core/modules/system/tests/modules/experimental_module_dependency_test/experimental_module_dependency_test.info.yml +++ b/core/modules/system/tests/modules/experimental_module_dependency_test/experimental_module_dependency_test.info.yml @@ -5,4 +5,3 @@ package: Testing dependencies: - drupal:experimental_module_test version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/experimental_module_requirements_test/experimental_module_requirements_test.info.yml b/core/modules/system/tests/modules/experimental_module_requirements_test/experimental_module_requirements_test.info.yml index 8ac724b994758e21407d82d9f4697466d208fc84..7d94791173f55fe7cd2dc7280d772dab8dd2f9b7 100644 --- a/core/modules/system/tests/modules/experimental_module_requirements_test/experimental_module_requirements_test.info.yml +++ b/core/modules/system/tests/modules/experimental_module_requirements_test/experimental_module_requirements_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Module in the experimental package to test hook_requirements() with an experimental module.' package: Core (Experimental) version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/experimental_module_test/experimental_module_test.info.yml b/core/modules/system/tests/modules/experimental_module_test/experimental_module_test.info.yml index 6cf19cd0666272a0644106cc1ba57a51deaed2a2..c00a80070c31d0d67dbb2ddb0083deea7d8c2f33 100644 --- a/core/modules/system/tests/modules/experimental_module_test/experimental_module_test.info.yml +++ b/core/modules/system/tests/modules/experimental_module_test/experimental_module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Module in the experimental package to test experimental functionality.' package: Core (Experimental) version: 8.y.x-unstable -core: 8.x diff --git a/core/modules/system/tests/modules/form_test/form_test.info.yml b/core/modules/system/tests/modules/form_test/form_test.info.yml index fdf1076ef6040c12ab884f6a6938c037aace1ca7..927575e0504b95fd0107cd841206ab4952aad51a 100644 --- a/core/modules/system/tests/modules/form_test/form_test.info.yml +++ b/core/modules/system/tests/modules/form_test/form_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for Form API tests.' package: Testing version: VERSION -core: 8.x dependencies: - file - filter diff --git a/core/modules/system/tests/modules/hold_test/hold_test.info.yml b/core/modules/system/tests/modules/hold_test/hold_test.info.yml index f7677514228914e6967ff1e9764f933e36ffb6b7..9600d708310f0a3a3040476eb739fcf71bacba7b 100644 --- a/core/modules/system/tests/modules/hold_test/hold_test.info.yml +++ b/core/modules/system/tests/modules/hold_test/hold_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support testing with request/response hold.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/httpkernel_test/httpkernel_test.info.yml b/core/modules/system/tests/modules/httpkernel_test/httpkernel_test.info.yml index 5f1375f2825a5f071bcb685f0970d1af6ff3b384..c556396b2fbb94d45831eea5ee15c4a53fe34683 100644 --- a/core/modules/system/tests/modules/httpkernel_test/httpkernel_test.info.yml +++ b/core/modules/system/tests/modules/httpkernel_test/httpkernel_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for httpkernel tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/image_test/image_test.info.yml b/core/modules/system/tests/modules/image_test/image_test.info.yml index 2e54287d54dce447d1de1d14dd3e56de569dfa46..1dea972cdd227664fd18edcdf665f78550ae7500 100644 --- a/core/modules/system/tests/modules/image_test/image_test.info.yml +++ b/core/modules/system/tests/modules/image_test/image_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for image toolkit tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/invalid_module_name_over_the_maximum_allowed_character_length/invalid_module_name_over_the_maximum_allowed_character_length.info.yml b/core/modules/system/tests/modules/invalid_module_name_over_the_maximum_allowed_character_length/invalid_module_name_over_the_maximum_allowed_character_length.info.yml index db5cdcc570c3282d87b16578547c16cf6668b853..1cb6ddddeb0b86c1f9b888543d5d209e66888808 100644 --- a/core/modules/system/tests/modules/invalid_module_name_over_the_maximum_allowed_character_length/invalid_module_name_over_the_maximum_allowed_character_length.info.yml +++ b/core/modules/system/tests/modules/invalid_module_name_over_the_maximum_allowed_character_length/invalid_module_name_over_the_maximum_allowed_character_length.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test module with a name over the maximum allowed characters.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/js_ajax_test/js_ajax_test.info.yml b/core/modules/system/tests/modules/js_ajax_test/js_ajax_test.info.yml index a5ec155ceca0862eddbaef49435a7945c51e7202..fa4a6114edab766b0862b3b64b97a60d82c28b7e 100644 --- a/core/modules/system/tests/modules/js_ajax_test/js_ajax_test.info.yml +++ b/core/modules/system/tests/modules/js_ajax_test/js_ajax_test.info.yml @@ -3,4 +3,3 @@ description: 'Provides custom ajax commands used for tests' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/js_deprecation_log_test/js_deprecation_log_test.info.yml b/core/modules/system/tests/modules/js_deprecation_log_test/js_deprecation_log_test.info.yml index b2589c6e2a263d2922bce49cdb13a09d90e90def..ceac46dc238e1f34008378c6152537e7bb62e5bb 100644 --- a/core/modules/system/tests/modules/js_deprecation_log_test/js_deprecation_log_test.info.yml +++ b/core/modules/system/tests/modules/js_deprecation_log_test/js_deprecation_log_test.info.yml @@ -3,4 +3,3 @@ description: 'Stores all JS deprecation calls to allow JS tests to determine if type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/js_deprecation_test/js_deprecation_test.info.yml b/core/modules/system/tests/modules/js_deprecation_test/js_deprecation_test.info.yml index 0a1b6153be38300fe1758596a2e253bedbda3a12..6de3db006cff941eea19ee93f556d67984d7e651 100644 --- a/core/modules/system/tests/modules/js_deprecation_test/js_deprecation_test.info.yml +++ b/core/modules/system/tests/modules/js_deprecation_test/js_deprecation_test.info.yml @@ -3,4 +3,3 @@ description: 'Provides deprecated code that can be used for tests' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/js_message_test/js_message_test.info.yml b/core/modules/system/tests/modules/js_message_test/js_message_test.info.yml index e8bc73b06598ed80e5d07ef20314f5fc7b705b41..83160db33a2521ceb6b986198e5e417cb198c2d0 100644 --- a/core/modules/system/tests/modules/js_message_test/js_message_test.info.yml +++ b/core/modules/system/tests/modules/js_message_test/js_message_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Module for the JSMessageTest test.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/js_webassert_test/js_webassert_test.info.yml b/core/modules/system/tests/modules/js_webassert_test/js_webassert_test.info.yml index 787ef146ff21f6d185dcb1e182164d5d0f75c8a8..951b9349fe62dc0f7c98957685319959b89d7efb 100644 --- a/core/modules/system/tests/modules/js_webassert_test/js_webassert_test.info.yml +++ b/core/modules/system/tests/modules/js_webassert_test/js_webassert_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Module for the JSWebAssert test.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/keyvalue_test/keyvalue_test.info.yml b/core/modules/system/tests/modules/keyvalue_test/keyvalue_test.info.yml index 1da31bcc54368a3310e432bffcb05f0b23f2e149..2ce9f4a7060cff0a04e6fbf0b3332e0a5f356510 100644 --- a/core/modules/system/tests/modules/keyvalue_test/keyvalue_test.info.yml +++ b/core/modules/system/tests/modules/keyvalue_test/keyvalue_test.info.yml @@ -1,7 +1,6 @@ name: 'KeyValue tests' type: module description: 'A support module to test key value storage.' -core: 8.x package: Testing version: VERSION hidden: true diff --git a/core/modules/system/tests/modules/layout_test/layout_test.info.yml b/core/modules/system/tests/modules/layout_test/layout_test.info.yml index bfed2a5bb0ac48b1c48ef4c4d282815cbccc03a2..2a7a5c01e040ccadac342f753d38611b782635c9 100644 --- a/core/modules/system/tests/modules/layout_test/layout_test.info.yml +++ b/core/modules/system/tests/modules/layout_test/layout_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing layouts.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/lazy_route_provider_install_test/lazy_route_provider_install_test.info.yml b/core/modules/system/tests/modules/lazy_route_provider_install_test/lazy_route_provider_install_test.info.yml index e7e55e5038ed58e9dce7749079f49cfccc2bdf97..96c88c0d14bb352588f739d550dba1f675d64ff8 100644 --- a/core/modules/system/tests/modules/lazy_route_provider_install_test/lazy_route_provider_install_test.info.yml +++ b/core/modules/system/tests/modules/lazy_route_provider_install_test/lazy_route_provider_install_test.info.yml @@ -3,4 +3,3 @@ description: 'Helps test a bug triggered by the url_generator maintaining a stal type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/link_generation_test/link_generation_test.info.yml b/core/modules/system/tests/modules/link_generation_test/link_generation_test.info.yml index 2f200a423219d7f68a625892d4384209f60dcb6d..49fc5d9a44d618da92eb885676e0e22e0f5725c3 100644 --- a/core/modules/system/tests/modules/link_generation_test/link_generation_test.info.yml +++ b/core/modules/system/tests/modules/link_generation_test/link_generation_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test hooks fired in link generation.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/mail_cancel_test/mail_cancel_test.info.yml b/core/modules/system/tests/modules/mail_cancel_test/mail_cancel_test.info.yml index 5d918b93bba472ad83b4824a401e96c1a0a4c287..9ea2b3c033e33f2bb5f0ab4d54043695a65e0fcd 100644 --- a/core/modules/system/tests/modules/mail_cancel_test/mail_cancel_test.info.yml +++ b/core/modules/system/tests/modules/mail_cancel_test/mail_cancel_test.info.yml @@ -3,4 +3,3 @@ description: 'Test that the mail can be cancelled.' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/mail_html_test/mail_html_test.info.yml b/core/modules/system/tests/modules/mail_html_test/mail_html_test.info.yml index 08ae1e8f0ce32868d912f55544662fc0031b4ebd..450353b616ba3f53ff98f215ef1317cc7033881f 100644 --- a/core/modules/system/tests/modules/mail_html_test/mail_html_test.info.yml +++ b/core/modules/system/tests/modules/mail_html_test/mail_html_test.info.yml @@ -3,4 +3,3 @@ description: 'Test if HTML in mails works as expected.' type: module package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/menu_test/menu_test.info.yml b/core/modules/system/tests/modules/menu_test/menu_test.info.yml index 3d082e3251f602d018667626f1c1749797020f73..e294a6afffaf0a0c2563d07adcd0d118eb61b9d6 100644 --- a/core/modules/system/tests/modules/menu_test/menu_test.info.yml +++ b/core/modules/system/tests/modules/menu_test/menu_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for menu hook testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:test_page_test - drupal:menu_ui diff --git a/core/modules/system/tests/modules/module_autoload_test/module_autoload_test.info.yml b/core/modules/system/tests/modules/module_autoload_test/module_autoload_test.info.yml index 18051859569e4c3dc470c06fd00d5704a686dfe1..5d19df588bd9e7d559908054bced9072b48a9fcb 100644 --- a/core/modules/system/tests/modules/module_autoload_test/module_autoload_test.info.yml +++ b/core/modules/system/tests/modules/module_autoload_test/module_autoload_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for module system tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/module_cachebin/module_cachebin.info.yml b/core/modules/system/tests/modules/module_cachebin/module_cachebin.info.yml index d255795c52f408c000810de70e7db7f7f1c796e8..93809904f1222bdf899f03da80ccb75c202a5680 100644 --- a/core/modules/system/tests/modules/module_cachebin/module_cachebin.info.yml +++ b/core/modules/system/tests/modules/module_cachebin/module_cachebin.info.yml @@ -3,5 +3,4 @@ type: module description: Test cache bins defined by modules. package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.info.yml b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.info.yml index 4e88ccb8daaed30ca915ba452d80b75d18d9eabc..16e9b7f6174ef2dd9b6ad5e8fbb8488f07570442 100644 --- a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.info.yml +++ b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.info.yml @@ -3,5 +3,4 @@ type: module description: Test module used to test adding modules with child module. package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.info.yml b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.info.yml index 794d624a6c7eac924b845bbf7dd7edbd033fe098..30c64e414deb69bb714f7703f2c026a546cd9e4e 100644 --- a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.info.yml +++ b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.info.yml @@ -3,7 +3,6 @@ type: module description: Child of test module used to test adding modules with child module. package: Testing version: VERSION -core: 8.x hidden: true dependencies: - drupal:module_handler_test_multiple diff --git a/core/modules/system/tests/modules/module_install_class_loader_test1/module_install_class_loader_test1.info.yml b/core/modules/system/tests/modules/module_install_class_loader_test1/module_install_class_loader_test1.info.yml index 83c54d91e4beb2bea918d41360837caf5305d8b5..e8f805da4df0f3449599ebcb8791f43416c115a4 100644 --- a/core/modules/system/tests/modules/module_install_class_loader_test1/module_install_class_loader_test1.info.yml +++ b/core/modules/system/tests/modules/module_install_class_loader_test1/module_install_class_loader_test1.info.yml @@ -2,5 +2,4 @@ name: 'Module install class loader test1' description: 'Support module for tests that the class loader behaves as expected during module install.' type: module package: Testing -core: 8.x version: VERSION diff --git a/core/modules/system/tests/modules/module_install_class_loader_test2/module_install_class_loader_test2.info.yml b/core/modules/system/tests/modules/module_install_class_loader_test2/module_install_class_loader_test2.info.yml index b2a677c5c8f87eed946a8d7cbbb5a0ffb0ad1be8..1b1e526129ec8b6543e24f305ef28d1192038992 100644 --- a/core/modules/system/tests/modules/module_install_class_loader_test2/module_install_class_loader_test2.info.yml +++ b/core/modules/system/tests/modules/module_install_class_loader_test2/module_install_class_loader_test2.info.yml @@ -2,7 +2,6 @@ name: 'Module install class loader test2' description: 'Support module for tests that the class loader behaves as expected during module install.' type: module package: Testing -core: 8.x version: VERSION dependencies: - drupal:module_install_class_loader_test1 diff --git a/core/modules/system/tests/modules/module_installer_config_test/module_installer_config_test.info.yml b/core/modules/system/tests/modules/module_installer_config_test/module_installer_config_test.info.yml index 4c600b68be6880c77f405f4b6caf3cfdd1169ee6..b1af4dd4c720f48c20adc53e3fb28aba1a154ae9 100644 --- a/core/modules/system/tests/modules/module_installer_config_test/module_installer_config_test.info.yml +++ b/core/modules/system/tests/modules/module_installer_config_test/module_installer_config_test.info.yml @@ -2,5 +2,4 @@ name: 'Module installer config test' description: 'Support module for tests that require a failed module install.' type: module package: Testing -core: 8.x version: VERSION diff --git a/core/modules/system/tests/modules/module_required_test/module_required_test.info.yml b/core/modules/system/tests/modules/module_required_test/module_required_test.info.yml index f424d95cfbbc97933f53ad2876e068134b031818..8bb02231036e9ea65fd7dae7fbc7e6b503a2fc96 100644 --- a/core/modules/system/tests/modules/module_required_test/module_required_test.info.yml +++ b/core/modules/system/tests/modules/module_required_test/module_required_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for module system testing.' package: Testing version: VERSION -core: 8.x # Depends on the Node module to test making a module required using # hook_system_info_alter() and ensuring that its dependencies also become # required. diff --git a/core/modules/system/tests/modules/module_test/module_test.info.yml b/core/modules/system/tests/modules/module_test/module_test.info.yml index 5c63da21a6489d3b7e286ea37ab1245e4abfcffd..f8f8e89b300c7f604df6404ce6d87ab0f011b5c5 100644 --- a/core/modules/system/tests/modules/module_test/module_test.info.yml +++ b/core/modules/system/tests/modules/module_test/module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for module system testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.info.yml b/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.info.yml index eab08261b53c1cf6132e904008f76fd9b35542e3..4e45cd816a68e0b692d3e98874c936633de627f2 100644 --- a/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.info.yml +++ b/core/modules/system/tests/modules/new_dependency_test/new_dependency_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x dependencies: - new_dependency_test_with_service diff --git a/core/modules/system/tests/modules/new_dependency_test_with_service/new_dependency_test_with_service.info.yml b/core/modules/system/tests/modules/new_dependency_test_with_service/new_dependency_test_with_service.info.yml index 5091a7f79d6a1948ea38c11795c8d2b0ea887df2..be452336de30a41fac73f77e90eb9c6957474455 100644 --- a/core/modules/system/tests/modules/new_dependency_test_with_service/new_dependency_test_with_service.info.yml +++ b/core/modules/system/tests/modules/new_dependency_test_with_service/new_dependency_test_with_service.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/off_canvas_test/off_canvas_test.info.yml b/core/modules/system/tests/modules/off_canvas_test/off_canvas_test.info.yml index 9680b1842d9c19bbb8e59bd4157457b7af2e9838..cbeb3cc73a48fd18565bf7f320b01f1147577fc7 100644 --- a/core/modules/system/tests/modules/off_canvas_test/off_canvas_test.info.yml +++ b/core/modules/system/tests/modules/off_canvas_test/off_canvas_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides off-canvas test links.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/pager_test/pager_test.info.yml b/core/modules/system/tests/modules/pager_test/pager_test.info.yml index 54a4a40b9d5918df5aeda4cbc78dfb3c86ddc74d..5f3a99c473d4414ca18e0d6962a77e4bcee585f7 100644 --- a/core/modules/system/tests/modules/pager_test/pager_test.info.yml +++ b/core/modules/system/tests/modules/pager_test/pager_test.info.yml @@ -1,5 +1,4 @@ type: module -core: 8.x name: 'Pager Test' description: 'Support module for pager tests.' package: Testing diff --git a/core/modules/system/tests/modules/paramconverter_test/paramconverter_test.info.yml b/core/modules/system/tests/modules/paramconverter_test/paramconverter_test.info.yml index 1953d92942d23ab452cecafa33112a9e4cc475b8..2b9c7fb6d97f3fa8d7c6173557c99034f123d305 100644 --- a/core/modules/system/tests/modules/paramconverter_test/paramconverter_test.info.yml +++ b/core/modules/system/tests/modules/paramconverter_test/paramconverter_test.info.yml @@ -3,4 +3,3 @@ type: module description: "Support module for paramconverter testing." package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/path_deprecated_test/path_deprecated_test.info.yml b/core/modules/system/tests/modules/path_deprecated_test/path_deprecated_test.info.yml index 15b9357e74b696824a7b268b07dca762c3f97be5..0495efd0fa7ffd59015c0b04f4ee889ef1377b29 100644 --- a/core/modules/system/tests/modules/path_deprecated_test/path_deprecated_test.info.yml +++ b/core/modules/system/tests/modules/path_deprecated_test/path_deprecated_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing deprecated functionality for path aliases.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/path_encoded_test/path_encoded_test.info.yml b/core/modules/system/tests/modules/path_encoded_test/path_encoded_test.info.yml index 37208e9b62d58e5f71320b5968d03e98dc056401..2f30068493bab98b13de42a9136b8a7e92deb716 100644 --- a/core/modules/system/tests/modules/path_encoded_test/path_encoded_test.info.yml +++ b/core/modules/system/tests/modules/path_encoded_test/path_encoded_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing path aliases on a route with encoded characters in the path.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/phpunit_test/phpunit_test.info.yml b/core/modules/system/tests/modules/phpunit_test/phpunit_test.info.yml index e0a4c6e8dffcb38bda3e5ef2d2c6cabe3502b4dd..893a2a2ea3174dca78c56790108b323b89025b4c 100644 --- a/core/modules/system/tests/modules/phpunit_test/phpunit_test.info.yml +++ b/core/modules/system/tests/modules/phpunit_test/phpunit_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides dummy classes for use by SimpleTest tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/plugin_test/plugin_test.info.yml b/core/modules/system/tests/modules/plugin_test/plugin_test.info.yml index 950a1d02de449722b5e79f1093cb48875f622a33..601db6098d04670bfac43a2dec413f1d54b079ee 100644 --- a/core/modules/system/tests/modules/plugin_test/plugin_test.info.yml +++ b/core/modules/system/tests/modules/plugin_test/plugin_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test that plugins can provide plugins and provide namespace discovery for plugin test implementations.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/plugin_test_extended/plugin_test_extended.info.yml b/core/modules/system/tests/modules/plugin_test_extended/plugin_test_extended.info.yml index f3d0a5ba08590918c3b8bdbab5d6879440657002..3585140d4c00a2a2ce0edfea6d0804554ced9e68 100644 --- a/core/modules/system/tests/modules/plugin_test_extended/plugin_test_extended.info.yml +++ b/core/modules/system/tests/modules/plugin_test_extended/plugin_test_extended.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test annotations can extend other annotations in a different namespace.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/render_array_non_html_subscriber_test/render_array_non_html_subscriber_test.info.yml b/core/modules/system/tests/modules/render_array_non_html_subscriber_test/render_array_non_html_subscriber_test.info.yml index 9441db06584f806e7139446cd3c9982125a709bd..6d5d8287766b2b7d7e9eb2b05d0c3448d6243190 100644 --- a/core/modules/system/tests/modules/render_array_non_html_subscriber_test/render_array_non_html_subscriber_test.info.yml +++ b/core/modules/system/tests/modules/render_array_non_html_subscriber_test/render_array_non_html_subscriber_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for RenderArrayNonHtmlSubscriberTest.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/render_attached_test/render_attached_test.info.yml b/core/modules/system/tests/modules/render_attached_test/render_attached_test.info.yml index 7662e3077fdcc1d30f907b86bd90595356f926b9..ed9b858fb4fe1b06ef5ab141ed706f498550d951 100644 --- a/core/modules/system/tests/modules/render_attached_test/render_attached_test.info.yml +++ b/core/modules/system/tests/modules/render_attached_test/render_attached_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for HtmlResponseAttachmentsTest.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:block diff --git a/core/modules/system/tests/modules/render_placeholder_message_test/render_placeholder_message_test.info.yml b/core/modules/system/tests/modules/render_placeholder_message_test/render_placeholder_message_test.info.yml index 532695bc0a115465c6e47792d212dcd982d5eac4..698bb04f3bcbff861c720d8b22e4342ebe83cbf1 100644 --- a/core/modules/system/tests/modules/render_placeholder_message_test/render_placeholder_message_test.info.yml +++ b/core/modules/system/tests/modules/render_placeholder_message_test/render_placeholder_message_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for PlaceholderMessageTest.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/requirements1_test/requirements1_test.info.yml b/core/modules/system/tests/modules/requirements1_test/requirements1_test.info.yml index 6288bf3e52785919d9c149c138b65360d79b475c..ea8fed09f73314599fd2c61940f5d067cf429a0e 100644 --- a/core/modules/system/tests/modules/requirements1_test/requirements1_test.info.yml +++ b/core/modules/system/tests/modules/requirements1_test/requirements1_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Tests that a module is not installed when it fails hook_requirements(''install'').' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/requirements2_test/requirements2_test.info.yml b/core/modules/system/tests/modules/requirements2_test/requirements2_test.info.yml index 4c1a367db0da6dc31f894c0d5c583dd3e54ef220..b902b4c56a5dcfcd494bd79af58c4d767be3cd87 100644 --- a/core/modules/system/tests/modules/requirements2_test/requirements2_test.info.yml +++ b/core/modules/system/tests/modules/requirements2_test/requirements2_test.info.yml @@ -6,4 +6,3 @@ dependencies: - drupal:comment package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/router_test_directory/router_test.info.yml b/core/modules/system/tests/modules/router_test_directory/router_test.info.yml index 27a082783de4f4f84f3cf21b378e9f58c852bf29..0240934dbbc98cb4b283c4b23032ec37f3ed6c7b 100644 --- a/core/modules/system/tests/modules/router_test_directory/router_test.info.yml +++ b/core/modules/system/tests/modules/router_test_directory/router_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for routing testing. In a directory that does not match the module name to test that use case.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/service_provider_test/service_provider_test.info.yml b/core/modules/system/tests/modules/service_provider_test/service_provider_test.info.yml index ba84020c7ff8e509469515d77456197ab3280fef..2c82600fd6302b5adeb7bbb2acbbe314d05be2c3 100644 --- a/core/modules/system/tests/modules/service_provider_test/service_provider_test.info.yml +++ b/core/modules/system/tests/modules/service_provider_test/service_provider_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for service provider testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/session_exists_cache_context_test/session_exists_cache_context_test.info.yml b/core/modules/system/tests/modules/session_exists_cache_context_test/session_exists_cache_context_test.info.yml index b376a57e5493d967f619072cf2e23d052ef63a4b..7519749479535f31bf700ef8a5e6f328ea46355f 100644 --- a/core/modules/system/tests/modules/session_exists_cache_context_test/session_exists_cache_context_test.info.yml +++ b/core/modules/system/tests/modules/session_exists_cache_context_test/session_exists_cache_context_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for session.exists cache context testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/session_test/session_test.info.yml b/core/modules/system/tests/modules/session_test/session_test.info.yml index b9abfef0a99871fc9d8b96e431eec1923a87a477..4877c138660e53ee149bec2f388051ed1827818c 100644 --- a/core/modules/system/tests/modules/session_test/session_test.info.yml +++ b/core/modules/system/tests/modules/session_test/session_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for session data testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/system_core_semver_test/system_core_semver_test.info.yml b/core/modules/system/tests/modules/system_core_semver_test/system_core_semver_test.info.yml index 47eec87f489cd241c6b50eb460a5b22f1c228e44..8752a2618db2d325b98ffd060fb895cb1b2918a5 100644 --- a/core/modules/system/tests/modules/system_core_semver_test/system_core_semver_test.info.yml +++ b/core/modules/system/tests/modules/system_core_semver_test/system_core_semver_test.info.yml @@ -3,4 +3,4 @@ type: module description: 'Support module for testing core using semver.' package: Testing version: 1.0.0 -core_version_requirement: ^8 +core_version_requirement: ^8|^9 diff --git a/core/modules/system/tests/modules/system_dependencies_test/system_dependencies_test.info.yml b/core/modules/system/tests/modules/system_dependencies_test/system_dependencies_test.info.yml index fae988033b8cc8c3fc8e7f4547b28d1648e597cf..864eb87fc697e998c3b765a5f1f97cc39d2b9a36 100644 --- a/core/modules/system/tests/modules/system_dependencies_test/system_dependencies_test.info.yml +++ b/core/modules/system/tests/modules/system_dependencies_test/system_dependencies_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing system dependencies.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:_missing_dependency diff --git a/core/modules/system/tests/modules/system_incompatible_core_version_dependencies_test/system_incompatible_core_version_dependencies_test.info.yml b/core/modules/system/tests/modules/system_incompatible_core_version_dependencies_test/system_incompatible_core_version_dependencies_test.info.yml index 449980e7df1c087ba4d2742235a8948d2d3b6664..f429775dd3403510b29be0e2c03b68cbc10a643c 100644 --- a/core/modules/system/tests/modules/system_incompatible_core_version_dependencies_test/system_incompatible_core_version_dependencies_test.info.yml +++ b/core/modules/system/tests/modules/system_incompatible_core_version_dependencies_test/system_incompatible_core_version_dependencies_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing system dependencies.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:system_incompatible_core_version_test diff --git a/core/modules/system/tests/modules/system_incompatible_module_version_dependencies_test/system_incompatible_module_version_dependencies_test.info.yml b/core/modules/system/tests/modules/system_incompatible_module_version_dependencies_test/system_incompatible_module_version_dependencies_test.info.yml index cafa61c9b8550f097a500bdd16e5562683322681..8976882c05d77861edc056aaa49e0d3f0bf9bc24 100644 --- a/core/modules/system/tests/modules/system_incompatible_module_version_dependencies_test/system_incompatible_module_version_dependencies_test.info.yml +++ b/core/modules/system/tests/modules/system_incompatible_module_version_dependencies_test/system_incompatible_module_version_dependencies_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing system dependencies.' package: Testing version: VERSION -core: 8.x dependencies: - 'drupal:system_incompatible_module_version_test (>2.0)' diff --git a/core/modules/system/tests/modules/system_incompatible_module_version_test/system_incompatible_module_version_test.info.yml b/core/modules/system/tests/modules/system_incompatible_module_version_test/system_incompatible_module_version_test.info.yml index f0076b1e437a1325bf922a7e88fc4b96fb553611..16e0ca15aa04fa182d35982dfeba02c7162ac4b3 100644 --- a/core/modules/system/tests/modules/system_incompatible_module_version_test/system_incompatible_module_version_test.info.yml +++ b/core/modules/system/tests/modules/system_incompatible_module_version_test/system_incompatible_module_version_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing system dependencies.' package: Testing version: '1.0' -core: 8.x diff --git a/core/modules/system/tests/modules/system_incompatible_php_version_test/system_incompatible_php_version_test.info.yml b/core/modules/system/tests/modules/system_incompatible_php_version_test/system_incompatible_php_version_test.info.yml index a3a26ee55d694d05f2bf126bf4fdf94dca0fdea4..c7acd3de0db6108e3aa32f298290feebc85a463d 100644 --- a/core/modules/system/tests/modules/system_incompatible_php_version_test/system_incompatible_php_version_test.info.yml +++ b/core/modules/system/tests/modules/system_incompatible_php_version_test/system_incompatible_php_version_test.info.yml @@ -3,5 +3,4 @@ type: module description: 'Support module for testing system dependencies.' package: Testing version: VERSION -core: 8.x php: 6502 diff --git a/core/modules/system/tests/modules/system_mail_failure_test/system_mail_failure_test.info.yml b/core/modules/system/tests/modules/system_mail_failure_test/system_mail_failure_test.info.yml index 12ad6e249fc77c7d1714c2628ac58628656e037f..7323cc3bd9ad5f1104589eb932e81e4f99504bb0 100644 --- a/core/modules/system/tests/modules/system_mail_failure_test/system_mail_failure_test.info.yml +++ b/core/modules/system/tests/modules/system_mail_failure_test/system_mail_failure_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides a malfunctioning mail service for testing purposes.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/system_module_test/system_module_test.info.yml b/core/modules/system/tests/modules/system_module_test/system_module_test.info.yml index 6b787f5e006244842b2519b6e99eb08f44759405..591ef424345103b866d64ed5f6508484e2f16ebe 100644 --- a/core/modules/system/tests/modules/system_module_test/system_module_test.info.yml +++ b/core/modules/system/tests/modules/system_module_test/system_module_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides hook implementations for testing System module functionality.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/system_project_namespace_test/system_project_namespace_test.info.yml b/core/modules/system/tests/modules/system_project_namespace_test/system_project_namespace_test.info.yml index bcea14fb78cef95c0f2829f5187237eb03852420..aad9782bbe08caa33b0f53c1acf0644a4a3d426f 100644 --- a/core/modules/system/tests/modules/system_project_namespace_test/system_project_namespace_test.info.yml +++ b/core/modules/system/tests/modules/system_project_namespace_test/system_project_namespace_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for testing project namespace system dependencies.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:filter diff --git a/core/modules/system/tests/modules/system_test/system_test.info.yml b/core/modules/system/tests/modules/system_test/system_test.info.yml index 7228709457408a2ea1766cdbc26b67f80b1b6d70..5032084529d0e0e6b4f8e2fb9ab16a5019b86a74 100644 --- a/core/modules/system/tests/modules/system_test/system_test.info.yml +++ b/core/modules/system/tests/modules/system_test/system_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for system testing.' package: Testing version: VERSION -core: 8.x configure: system_test.configure configure_parameters: foo: bar diff --git a/core/modules/system/tests/modules/tabledrag_test/tabledrag_test.info.yml b/core/modules/system/tests/modules/tabledrag_test/tabledrag_test.info.yml index 98d6bb4b96ba09d8f1024052c94753fd499d6af5..62f85898e61949c8e7f09cc385d5cb2bc16de0d9 100644 --- a/core/modules/system/tests/modules/tabledrag_test/tabledrag_test.info.yml +++ b/core/modules/system/tests/modules/tabledrag_test/tabledrag_test.info.yml @@ -1,6 +1,5 @@ type: module name: 'TableDrag test' description: 'Draggable table test module.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/test_batch_test/test_batch_test.info.yml b/core/modules/system/tests/modules/test_batch_test/test_batch_test.info.yml index bc4a3eef2297512a566ace275966ffec00d6b1d5..62d3eeb20ff9c9074e6a06d70d3c7d73ae23e7f1 100644 --- a/core/modules/system/tests/modules/test_batch_test/test_batch_test.info.yml +++ b/core/modules/system/tests/modules/test_batch_test/test_batch_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Support module for functional tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:entity_test diff --git a/core/modules/system/tests/modules/test_page_test/test_page_test.info.yml b/core/modules/system/tests/modules/test_page_test/test_page_test.info.yml index f01c5971728331ee3212cc7d66e4390d35362928..42dc950c86fa66975d76b56e003edd0198fa678a 100644 --- a/core/modules/system/tests/modules/test_page_test/test_page_test.info.yml +++ b/core/modules/system/tests/modules/test_page_test/test_page_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides a test page for automated tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/theme_page_test/theme_page_test.info.yml b/core/modules/system/tests/modules/theme_page_test/theme_page_test.info.yml index da50bb11e8e543597aa9b0d2058c04e466b779e2..cfc8a15c67a2ea33c50320895d5bb45f3b81768d 100644 --- a/core/modules/system/tests/modules/theme_page_test/theme_page_test.info.yml +++ b/core/modules/system/tests/modules/theme_page_test/theme_page_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for theme system testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/theme_region_test/theme_region_test.info.yml b/core/modules/system/tests/modules/theme_region_test/theme_region_test.info.yml index 0cf5fe3139b8f0845c4b707c706c7c9663123392..44b94fe3506874459fab949f866bd0949bebf711 100644 --- a/core/modules/system/tests/modules/theme_region_test/theme_region_test.info.yml +++ b/core/modules/system/tests/modules/theme_region_test/theme_region_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides hook implementations for testing regions.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.info.yml b/core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.info.yml index fe61d0d91d169b06ca686381709997e039126dce..7fe6135f18ab8c667df6cb2c7bbbb1c68d53a951 100644 --- a/core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.info.yml +++ b/core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing theme suggestions.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/theme_test/theme_test.info.yml b/core/modules/system/tests/modules/theme_test/theme_test.info.yml index 0fe8c1019d469cddde7ac8cdaa47e56e569e8eb4..bc4334f5e060ee6002b1870e756a2760906e6225 100644 --- a/core/modules/system/tests/modules/theme_test/theme_test.info.yml +++ b/core/modules/system/tests/modules/theme_test/theme_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for theme system testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/token_test/token_test.info.yml b/core/modules/system/tests/modules/token_test/token_test.info.yml index 8f3bc473fddd72541e94f38cbf883498b6323fa9..67a433eae4df4f9d3f65304b6e3d12ac8d339c76 100644 --- a/core/modules/system/tests/modules/token_test/token_test.info.yml +++ b/core/modules/system/tests/modules/token_test/token_test.info.yml @@ -1,6 +1,5 @@ name: Token test type: module -core: 8.x package: Testing version: VERSION dependencies: diff --git a/core/modules/system/tests/modules/trusted_hosts_test/trusted_hosts_test.info.yml b/core/modules/system/tests/modules/trusted_hosts_test/trusted_hosts_test.info.yml index 20f41bcb84a01235e0a22058e9da0c4bc4f8d8c3..fec79aa70d66066113da463d17e8fa4e8e3d2069 100644 --- a/core/modules/system/tests/modules/trusted_hosts_test/trusted_hosts_test.info.yml +++ b/core/modules/system/tests/modules/trusted_hosts_test/trusted_hosts_test.info.yml @@ -1,5 +1,4 @@ type: module name: 'Trusted hosts test module' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/modules/twig_extension_test/twig_extension_test.info.yml b/core/modules/system/tests/modules/twig_extension_test/twig_extension_test.info.yml index 5aee1e269525e6be192adafa692d316805343179..0c244c4d291ba2fcf2d5d2072609750e1dfe7989 100644 --- a/core/modules/system/tests/modules/twig_extension_test/twig_extension_test.info.yml +++ b/core/modules/system/tests/modules/twig_extension_test/twig_extension_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing Twig extensions.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/twig_loader_test/twig_loader_test.info.yml b/core/modules/system/tests/modules/twig_loader_test/twig_loader_test.info.yml index cf04aaeae3f29dd6d0f66143f57618df0964f3c3..ba813e5765b4e8b85df8a652560cbc7302fead6e 100644 --- a/core/modules/system/tests/modules/twig_loader_test/twig_loader_test.info.yml +++ b/core/modules/system/tests/modules/twig_loader_test/twig_loader_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing adding Twig loaders.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_a/twig_namespace_a.info.yml b/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_a/twig_namespace_a.info.yml index 7584b57cdaa9bbb0d6a58637ec33332f919d84d2..dec72bc1bc734dc70af7a3af31eb4751c194b836 100644 --- a/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_a/twig_namespace_a.info.yml +++ b/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_a/twig_namespace_a.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Twig namespace testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_b/twig_namespace_b.info.yml b/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_b/twig_namespace_b.info.yml index 7584b57cdaa9bbb0d6a58637ec33332f919d84d2..dec72bc1bc734dc70af7a3af31eb4751c194b836 100644 --- a/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_b/twig_namespace_b.info.yml +++ b/core/modules/system/tests/modules/twig_theme_test/modules/twig_namespace_b/twig_namespace_b.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Twig namespace testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/twig_theme_test/twig_theme_test.info.yml b/core/modules/system/tests/modules/twig_theme_test/twig_theme_test.info.yml index 751531592d1cbb91ff92de8b2fc50fdc224a45f2..47ae046def98c413f55edeb4f603f7efd459cf91 100644 --- a/core/modules/system/tests/modules/twig_theme_test/twig_theme_test.info.yml +++ b/core/modules/system/tests/modules/twig_theme_test/twig_theme_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for Twig theme system testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/unique_field_constraint_test/unique_field_constraint_test.info.yml b/core/modules/system/tests/modules/unique_field_constraint_test/unique_field_constraint_test.info.yml index a667c6217d0d14e5c568cc3e2c62cb482147582a..9a48d45057229a85627440780af8e9ca86a583ed 100644 --- a/core/modules/system/tests/modules/unique_field_constraint_test/unique_field_constraint_test.info.yml +++ b/core/modules/system/tests/modules/unique_field_constraint_test/unique_field_constraint_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for UniqueField Constraint testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_script_test/update_script_test.info.yml b/core/modules/system/tests/modules/update_script_test/update_script_test.info.yml index b582c1ab83a889d33f931d1603e71c6e718f48e4..d69892c36348194a8345765c8c1e75aa3b1018c5 100644 --- a/core/modules/system/tests/modules/update_script_test/update_script_test.info.yml +++ b/core/modules/system/tests/modules/update_script_test/update_script_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update script testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_0/update_test_0.info.yml b/core/modules/system/tests/modules/update_test_0/update_test_0.info.yml index 4162fd02c9505196fe0533731d67b558d36b64c0..e9bebdc5fc0daea7679060e6c0897180dc872761 100644 --- a/core/modules/system/tests/modules/update_test_0/update_test_0.info.yml +++ b/core/modules/system/tests/modules/update_test_0/update_test_0.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_1/update_test_1.info.yml b/core/modules/system/tests/modules/update_test_1/update_test_1.info.yml index 5a7e2e1fa8c6080638613c0ae78612e839853a2d..303d7cde540f9cfe8482c9265a80b269cd05952f 100644 --- a/core/modules/system/tests/modules/update_test_1/update_test_1.info.yml +++ b/core/modules/system/tests/modules/update_test_1/update_test_1.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_2/update_test_2.info.yml b/core/modules/system/tests/modules/update_test_2/update_test_2.info.yml index 5a7e2e1fa8c6080638613c0ae78612e839853a2d..303d7cde540f9cfe8482c9265a80b269cd05952f 100644 --- a/core/modules/system/tests/modules/update_test_2/update_test_2.info.yml +++ b/core/modules/system/tests/modules/update_test_2/update_test_2.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_3/update_test_3.info.yml b/core/modules/system/tests/modules/update_test_3/update_test_3.info.yml index 5a7e2e1fa8c6080638613c0ae78612e839853a2d..303d7cde540f9cfe8482c9265a80b269cd05952f 100644 --- a/core/modules/system/tests/modules/update_test_3/update_test_3.info.yml +++ b/core/modules/system/tests/modules/update_test_3/update_test_3.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_failing/update_test_failing.info.yml b/core/modules/system/tests/modules/update_test_failing/update_test_failing.info.yml index f6841f32d947f9d4cc0f93533dc0699c43f76b3f..04b52add2b49c11ff14aef541cf731c41be39d17 100644 --- a/core/modules/system/tests/modules/update_test_failing/update_test_failing.info.yml +++ b/core/modules/system/tests/modules/update_test_failing/update_test_failing.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing when an update hook is failing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.info.yml b/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.info.yml index b9aefba42f09900fd69cbfe4d33ec68903240d20..686b89805090e67356a3274421eed4e246082bce 100644 --- a/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.info.yml +++ b/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_postupdate/update_test_postupdate.info.yml b/core/modules/system/tests/modules/update_test_postupdate/update_test_postupdate.info.yml index f2445dd4550b07cb2910bea8911cc87bb3171274..477de6f2e3ba8a5f31bad589c3c732f9abaf8ab6 100644 --- a/core/modules/system/tests/modules/update_test_postupdate/update_test_postupdate.info.yml +++ b/core/modules/system/tests/modules/update_test_postupdate/update_test_postupdate.info.yml @@ -1,4 +1,3 @@ -core: 8.x name: Update test after type: module package: Testing diff --git a/core/modules/system/tests/modules/update_test_schema/update_test_schema.info.yml b/core/modules/system/tests/modules/update_test_schema/update_test_schema.info.yml index 620fb92b22db608ec0265e107c172b158097934e..ae175d65f1b28d60c381d0744309a6ae3ec56823 100644 --- a/core/modules/system/tests/modules/update_test_schema/update_test_schema.info.yml +++ b/core/modules/system/tests/modules/update_test_schema/update_test_schema.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/update_test_with_7x/update_test_with_7x.info.yml b/core/modules/system/tests/modules/update_test_with_7x/update_test_with_7x.info.yml index 2b47a04904435000af5bf70d7db8e7eac86df4c6..dc3dc54227c27b19092bb35ce21b0d06dddbf8e0 100644 --- a/core/modules/system/tests/modules/update_test_with_7x/update_test_with_7x.info.yml +++ b/core/modules/system/tests/modules/update_test_with_7x/update_test_with_7x.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/system/tests/modules/url_alter_test/url_alter_test.info.yml b/core/modules/system/tests/modules/url_alter_test/url_alter_test.info.yml index 95aba30857fae977356342b93676d5d6bbe2d563..605af9cd8841097d2e98bb98490f4bdc48d7c498 100644 --- a/core/modules/system/tests/modules/url_alter_test/url_alter_test.info.yml +++ b/core/modules/system/tests/modules/url_alter_test/url_alter_test.info.yml @@ -1,6 +1,5 @@ name: 'Url_alter tests' type: module description: 'A support module to test altering the inbound and outbound path.' -core: 8.x package: Testing version: VERSION diff --git a/core/modules/system/tests/src/Functional/Update/StableBaseThemeUpdateTest.php b/core/modules/system/tests/src/Functional/Update/StableBaseThemeUpdateTest.php index 6bc6425ab89df7f1d5d60d20e3a4cf3cd579f7b6..e00a3a94a220d6a764a9637f55a63c1b679144de 100644 --- a/core/modules/system/tests/src/Functional/Update/StableBaseThemeUpdateTest.php +++ b/core/modules/system/tests/src/Functional/Update/StableBaseThemeUpdateTest.php @@ -67,9 +67,7 @@ protected function setUp() { $this->themeHandler = $this->container->get('theme_handler'); $this->themeHandler->refreshInfo(); - $vfs_root = vfsStream::setup('root'); - $vfs_root->addChild(vfsStream::newDirectory($this->siteDirectory)); - $site_dir = $vfs_root->getChild($this->siteDirectory); + $vfs_root = vfsStream::setup('core'); vfsStream::create([ 'themes' => [ 'test_stable' => [ @@ -81,7 +79,7 @@ protected function setUp() { 'stable.theme' => file_get_contents(DRUPAL_ROOT . '/core/themes/stable/stable.theme'), ], ], - ], $site_dir); + ], $vfs_root); } /** @@ -116,8 +114,8 @@ class VfsThemeExtensionList extends ThemeExtensionList { */ public function __construct(string $root, string $type, CacheBackendInterface $cache, InfoParserInterface $info_parser, ModuleHandlerInterface $module_handler, StateInterface $state, ConfigFactoryInterface $config_factory, ThemeEngineExtensionList $engine_list, $install_profile) { parent::__construct($root, $type, $cache, $info_parser, $module_handler, $state, $config_factory, $engine_list, $install_profile); - $this->extensionDiscovery = new ExtensionDiscovery('vfs://root'); - $this->infoParser = new VfsInfoParser(); + $this->extensionDiscovery = new ExtensionDiscovery('vfs://core'); + $this->infoParser = new VfsInfoParser('vfs:/'); } /** @@ -135,7 +133,7 @@ class VfsInfoParser extends InfoParser { * {@inheritdoc} */ public function parse($filename) { - return parent::parse("vfs://root/$filename"); + return parent::parse("vfs://core/$filename"); } } diff --git a/core/modules/system/tests/themes/engines/nyan_cat/nyan_cat.info.yml b/core/modules/system/tests/themes/engines/nyan_cat/nyan_cat.info.yml index 342191c6e2552ad92a066e0b0c1d9b98798699e1..ed78897cde14764878f3e7715a01b0b6df300c48 100644 --- a/core/modules/system/tests/themes/engines/nyan_cat/nyan_cat.info.yml +++ b/core/modules/system/tests/themes/engines/nyan_cat/nyan_cat.info.yml @@ -1,5 +1,4 @@ type: theme_engine name: Nyan cat -core: 8.x version: VERSION package: Core diff --git a/core/modules/system/tests/themes/experimental_theme_dependency_test/experimental_theme_dependency_test.info.yml b/core/modules/system/tests/themes/experimental_theme_dependency_test/experimental_theme_dependency_test.info.yml index af20957d6935ed0707f0275c65cc0ba1b180e4ac..9067b81148965ed2efea92a1f1a17280b165f17d 100644 --- a/core/modules/system/tests/themes/experimental_theme_dependency_test/experimental_theme_dependency_test.info.yml +++ b/core/modules/system/tests/themes/experimental_theme_dependency_test/experimental_theme_dependency_test.info.yml @@ -2,5 +2,4 @@ name: 'Experimental dependency test' type: theme description: 'Experimental dependency test theme.' version: VERSION -core: 8.x base theme: experimental_theme_test diff --git a/core/modules/system/tests/themes/experimental_theme_test/experimental_theme_test.info.yml b/core/modules/system/tests/themes/experimental_theme_test/experimental_theme_test.info.yml index e80490a4d845fbe7477ed537f3a0888047ba5363..a2f4463902fccf852683df6371d5de452a2d832d 100644 --- a/core/modules/system/tests/themes/experimental_theme_test/experimental_theme_test.info.yml +++ b/core/modules/system/tests/themes/experimental_theme_test/experimental_theme_test.info.yml @@ -2,6 +2,5 @@ name: 'Experimental test' type: theme description: 'Experimental test theme.' version: VERSION -core: 8.x base theme: false experimental: true diff --git a/core/modules/system/tests/themes/test_basetheme/test_basetheme.info.yml b/core/modules/system/tests/themes/test_basetheme/test_basetheme.info.yml index 3efb45f3d67d3a979a7f420c130b80f6adbfc9ca..584de33d38cfe1c30ff25dbd28794ddcd8d18f82 100644 --- a/core/modules/system/tests/themes/test_basetheme/test_basetheme.info.yml +++ b/core/modules/system/tests/themes/test_basetheme/test_basetheme.info.yml @@ -2,7 +2,6 @@ name: 'Theme test base theme' type: theme description: 'Test theme which acts as a base theme for other test subthemes.' version: VERSION -core: 8.x base theme: false hidden: true diff --git a/core/modules/system/tests/themes/test_ckeditor_stylesheets_external/test_ckeditor_stylesheets_external.info.yml b/core/modules/system/tests/themes/test_ckeditor_stylesheets_external/test_ckeditor_stylesheets_external.info.yml index 77b8429bfb984ff8af6ea7a94f5f4fcf5cb814b2..417df98bceaadfc2b7432872fb5899afdabbda34 100644 --- a/core/modules/system/tests/themes/test_ckeditor_stylesheets_external/test_ckeditor_stylesheets_external.info.yml +++ b/core/modules/system/tests/themes/test_ckeditor_stylesheets_external/test_ckeditor_stylesheets_external.info.yml @@ -3,7 +3,5 @@ type: theme description: 'A theme that uses an external CKEditor stylesheet.' version: VERSION base theme: false -core: 8.x - ckeditor_stylesheets: - https://fonts.googleapis.com/css?family=Open+Sans diff --git a/core/modules/system/tests/themes/test_ckeditor_stylesheets_protocol_relative/test_ckeditor_stylesheets_protocol_relative.info.yml b/core/modules/system/tests/themes/test_ckeditor_stylesheets_protocol_relative/test_ckeditor_stylesheets_protocol_relative.info.yml index 62e1336a0162360ee2b0ce6e4f8defeb0deb8661..50aa1120f1b845f5fb3b381a74b35627e61f040d 100644 --- a/core/modules/system/tests/themes/test_ckeditor_stylesheets_protocol_relative/test_ckeditor_stylesheets_protocol_relative.info.yml +++ b/core/modules/system/tests/themes/test_ckeditor_stylesheets_protocol_relative/test_ckeditor_stylesheets_protocol_relative.info.yml @@ -3,7 +3,5 @@ type: theme description: 'A theme that uses a protocol-relative CKEditor stylesheet.' version: VERSION base theme: false -core: 8.x - ckeditor_stylesheets: - //fonts.googleapis.com/css?family=Open+Sans diff --git a/core/modules/system/tests/themes/test_ckeditor_stylesheets_relative/test_ckeditor_stylesheets_relative.info.yml b/core/modules/system/tests/themes/test_ckeditor_stylesheets_relative/test_ckeditor_stylesheets_relative.info.yml index 1e628746774f9a14172927486067f4a9626a47d3..13b1a7bc3aacbe580d8b77a655e08d84a569e1bb 100644 --- a/core/modules/system/tests/themes/test_ckeditor_stylesheets_relative/test_ckeditor_stylesheets_relative.info.yml +++ b/core/modules/system/tests/themes/test_ckeditor_stylesheets_relative/test_ckeditor_stylesheets_relative.info.yml @@ -3,7 +3,5 @@ type: theme description: 'A theme that uses a relative CKEditor stylesheet.' version: VERSION base theme: false -core: 8.x - ckeditor_stylesheets: - css/yokotsoko.css diff --git a/core/modules/system/tests/themes/test_invalid_basetheme/test_invalid_basetheme.info.yml b/core/modules/system/tests/themes/test_invalid_basetheme/test_invalid_basetheme.info.yml index ab0b49ed0f93c6a75ce222af1458035551c96e94..7d7d22960a62d95e81a27f8a3af5edd057bea590 100644 --- a/core/modules/system/tests/themes/test_invalid_basetheme/test_invalid_basetheme.info.yml +++ b/core/modules/system/tests/themes/test_invalid_basetheme/test_invalid_basetheme.info.yml @@ -2,5 +2,4 @@ name: 'Theme test with invalid base theme' type: theme description: 'Test theme which has a non-existent base theme.' version: VERSION -core: 8.x base theme: not_real_test_basetheme diff --git a/core/modules/system/tests/themes/test_invalid_basetheme_sub/test_invalid_basetheme_sub.info.yml b/core/modules/system/tests/themes/test_invalid_basetheme_sub/test_invalid_basetheme_sub.info.yml index 7b00c1b16fa9e77e46d2c001653ef3741e35d969..3df3931014f03e74816e6aa7842a5b3477a2b601 100644 --- a/core/modules/system/tests/themes/test_invalid_basetheme_sub/test_invalid_basetheme_sub.info.yml +++ b/core/modules/system/tests/themes/test_invalid_basetheme_sub/test_invalid_basetheme_sub.info.yml @@ -2,5 +2,4 @@ name: 'Theme test with valid base theme but no grandparent base theme' type: theme description: 'Test theme which has a non-existent base theme in the base chain.' version: VERSION -core: 8.x base theme: test_invalid_basetheme diff --git a/core/modules/system/tests/themes/test_invalid_engine/test_invalid_engine.info.yml b/core/modules/system/tests/themes/test_invalid_engine/test_invalid_engine.info.yml index 92410bfe233a71807adbfe1048414b19995953be..c6e4e1395602e8d669d8936f1d4d5fe57b7ab723 100644 --- a/core/modules/system/tests/themes/test_invalid_engine/test_invalid_engine.info.yml +++ b/core/modules/system/tests/themes/test_invalid_engine/test_invalid_engine.info.yml @@ -2,6 +2,5 @@ name: 'Theme test with invalid theme engine' type: theme description: 'Test theme which has a non-existent theme engine.' version: VERSION -core: 8.x engine: not_real_engine base theme: false diff --git a/core/modules/system/tests/themes/test_invalid_region/test_invalid_region.info.yml b/core/modules/system/tests/themes/test_invalid_region/test_invalid_region.info.yml index 02550fa1c91843df21b7120f0cdbfc3bc87e644a..95be361a263434e2f9e3b60c3919a6a4d01ff1d7 100644 --- a/core/modules/system/tests/themes/test_invalid_region/test_invalid_region.info.yml +++ b/core/modules/system/tests/themes/test_invalid_region/test_invalid_region.info.yml @@ -3,7 +3,5 @@ type: theme base theme: stable description: 'Test theme which has a non-existent content region.' version: VERSION -core: 8.x - regions: - foo: Foo diff --git a/core/modules/system/tests/themes/test_messages/test_messages.info.yml b/core/modules/system/tests/themes/test_messages/test_messages.info.yml index ea88438d98ea15af32a38026296b136410cb8525..30c0a61b61a50819b1ffa799fc060a47a0fe491a 100644 --- a/core/modules/system/tests/themes/test_messages/test_messages.info.yml +++ b/core/modules/system/tests/themes/test_messages/test_messages.info.yml @@ -2,5 +2,4 @@ name: 'Theme test messages' type: theme description: 'Test theme which provides another div for messages.' version: VERSION -core: 8.x base theme: classy diff --git a/core/modules/system/tests/themes/test_subseven/test_subseven.info.yml b/core/modules/system/tests/themes/test_subseven/test_subseven.info.yml index df9ad9c16d300030d1a6de08e45c54730617f100..05264eef08aa646f8ddb4d2097c6e990751c6944 100644 --- a/core/modules/system/tests/themes/test_subseven/test_subseven.info.yml +++ b/core/modules/system/tests/themes/test_subseven/test_subseven.info.yml @@ -2,5 +2,4 @@ name: 'Theme test subseven' type: theme description: 'Test theme which uses seven as the base theme.' version: VERSION -core: 8.x base theme: seven diff --git a/core/modules/system/tests/themes/test_subsubtheme/test_subsubtheme.info.yml b/core/modules/system/tests/themes/test_subsubtheme/test_subsubtheme.info.yml index 7bf373a25aacc3b59bea52cbef79cb99a099b705..df3821484924b9f1a9b77af8ae637fff9b98c5a8 100644 --- a/core/modules/system/tests/themes/test_subsubtheme/test_subsubtheme.info.yml +++ b/core/modules/system/tests/themes/test_subsubtheme/test_subsubtheme.info.yml @@ -2,5 +2,4 @@ name: 'Theme test subsubtheme' type: theme description: 'Test theme which uses test_subtheme as the base theme.' version: VERSION -core: 8.x base theme: test_subtheme diff --git a/core/modules/system/tests/themes/test_subtheme/test_subtheme.info.yml b/core/modules/system/tests/themes/test_subtheme/test_subtheme.info.yml index b217374234c8d317cffd3b34b19732e7239439f5..5457935e490ac440dbdc47218759c444a0245702 100644 --- a/core/modules/system/tests/themes/test_subtheme/test_subtheme.info.yml +++ b/core/modules/system/tests/themes/test_subtheme/test_subtheme.info.yml @@ -2,7 +2,6 @@ name: 'Theme test subtheme' type: theme description: 'Test theme which uses test_basetheme as the base theme.' version: VERSION -core: 8.x base theme: test_basetheme libraries: - test_subtheme/global-styling diff --git a/core/modules/system/tests/themes/test_theme/test_theme.info.yml b/core/modules/system/tests/themes/test_theme/test_theme.info.yml index b9660a45f52a654a2be8c2f159ab59318529e1c5..ea09bfdff1a2bed8cabd196b7b6923fe557499ce 100644 --- a/core/modules/system/tests/themes/test_theme/test_theme.info.yml +++ b/core/modules/system/tests/themes/test_theme/test_theme.info.yml @@ -13,7 +13,6 @@ type: theme description: 'Theme for testing the theme system' version: VERSION base theme: classy -core: 8.x logo: images/logo2.svg stylesheets-remove: - '@stable/css/system/components/js.module.css' diff --git a/core/modules/system/tests/themes/test_theme_having_veery_long_name_which_is_too_long/test_theme_having_veery_long_name_which_is_too_long.info.yml b/core/modules/system/tests/themes/test_theme_having_veery_long_name_which_is_too_long/test_theme_having_veery_long_name_which_is_too_long.info.yml index ab11132d6994b5a5b56ac5d20adc7f2c2293c55b..06aaca0635293f46a3c364d6a32903edfa87211d 100644 --- a/core/modules/system/tests/themes/test_theme_having_veery_long_name_which_is_too_long/test_theme_having_veery_long_name_which_is_too_long.info.yml +++ b/core/modules/system/tests/themes/test_theme_having_veery_long_name_which_is_too_long/test_theme_having_veery_long_name_which_is_too_long.info.yml @@ -1,5 +1,4 @@ type: theme base theme: stable -core: 8.x name: 'Test theme with a too long name' version: VERSION diff --git a/core/modules/system/tests/themes/test_theme_libraries_empty/test_theme_libraries_empty.info.yml b/core/modules/system/tests/themes/test_theme_libraries_empty/test_theme_libraries_empty.info.yml index d3853b14e2aabba3165b53b7336272a8d39de535..759e42015590de91a01696b7d2cd2d34c5db2bae 100644 --- a/core/modules/system/tests/themes/test_theme_libraries_empty/test_theme_libraries_empty.info.yml +++ b/core/modules/system/tests/themes/test_theme_libraries_empty/test_theme_libraries_empty.info.yml @@ -3,5 +3,4 @@ type: theme description: 'Test theme with empty libraries in theme.info.yml' version: VERSION base theme: classy -core: 8.x libraries: diff --git a/core/modules/system/tests/themes/test_theme_libraries_extend/test_theme_libraries_extend.info.yml b/core/modules/system/tests/themes/test_theme_libraries_extend/test_theme_libraries_extend.info.yml index 597a5b038cb554a6ecba72ab4a25ca972466d13f..6a92fe3f5b7e31ffa232cb32a1a479f888687313 100644 --- a/core/modules/system/tests/themes/test_theme_libraries_extend/test_theme_libraries_extend.info.yml +++ b/core/modules/system/tests/themes/test_theme_libraries_extend/test_theme_libraries_extend.info.yml @@ -3,7 +3,6 @@ type: theme description: 'Test Theme with libraries-extend' version: VERSION base theme: classy -core: 8.x libraries-extend: classy/book-navigation: - test_theme_libraries_extend/extend_one diff --git a/core/modules/system/tests/themes/test_theme_libraries_override_with_drupal_settings/test_theme_libraries_override_with_drupal_settings.info.yml b/core/modules/system/tests/themes/test_theme_libraries_override_with_drupal_settings/test_theme_libraries_override_with_drupal_settings.info.yml index f55f6d08085ce902e3d543f2283717a67ec59c16..48971e443682897dfa3276025af05f49052c46c0 100644 --- a/core/modules/system/tests/themes/test_theme_libraries_override_with_drupal_settings/test_theme_libraries_override_with_drupal_settings.info.yml +++ b/core/modules/system/tests/themes/test_theme_libraries_override_with_drupal_settings/test_theme_libraries_override_with_drupal_settings.info.yml @@ -3,7 +3,6 @@ type: theme description: 'Theme with drupalSettings libraries-override' version: VERSION base theme: classy -core: 8.x libraries-override: # drupalSettings libraries override. Should throw a # \Drupal\Core\Asset\Exception\InvalidLibrariesOverrideSpecificationException. diff --git a/core/modules/system/tests/themes/test_theme_libraries_override_with_invalid_asset/test_theme_libraries_override_with_invalid_asset.info.yml b/core/modules/system/tests/themes/test_theme_libraries_override_with_invalid_asset/test_theme_libraries_override_with_invalid_asset.info.yml index f31ade0b64bb5242cf42a04743f7e631be3ee169..347301999ed05af36793d7712e9c17d98c93d2a6 100644 --- a/core/modules/system/tests/themes/test_theme_libraries_override_with_invalid_asset/test_theme_libraries_override_with_invalid_asset.info.yml +++ b/core/modules/system/tests/themes/test_theme_libraries_override_with_invalid_asset/test_theme_libraries_override_with_invalid_asset.info.yml @@ -3,7 +3,6 @@ type: theme description: 'Theme with invalid libraries-override asset spec.' version: VERSION base theme: classy -core: 8.x libraries-override: # A malformed library asset name. Should throw a # \Drupal\Core\Asset\Exception\InvalidLibrariesOverrideSpecificationException. diff --git a/core/modules/system/tests/themes/test_theme_nyan_cat_engine/test_theme_nyan_cat_engine.info.yml b/core/modules/system/tests/themes/test_theme_nyan_cat_engine/test_theme_nyan_cat_engine.info.yml index 315581a095b5321a7804c920a20e60bd4eb834c4..f0c965a65a259a0863877ad76d9584c470008446 100644 --- a/core/modules/system/tests/themes/test_theme_nyan_cat_engine/test_theme_nyan_cat_engine.info.yml +++ b/core/modules/system/tests/themes/test_theme_nyan_cat_engine/test_theme_nyan_cat_engine.info.yml @@ -2,6 +2,5 @@ name: 'Test theme for Nyan Cat engine' type: theme description: 'Theme for testing the theme system with the Nyan Cat theme engine' version: VERSION -core: 8.x engine: nyan_cat base theme: false diff --git a/core/modules/system/tests/themes/test_theme_settings/test_theme_settings.info.yml b/core/modules/system/tests/themes/test_theme_settings/test_theme_settings.info.yml index 38dd300e71fb44042603aa8b887696119b00e720..97f061da513e71153452a151cde6daa38d035b88 100644 --- a/core/modules/system/tests/themes/test_theme_settings/test_theme_settings.info.yml +++ b/core/modules/system/tests/themes/test_theme_settings/test_theme_settings.info.yml @@ -2,5 +2,4 @@ name: 'Theme test theme-settings.php' type: theme description: 'Test theme that extends theme settings options via theme-settings.php file' version: VERSION -core: 8.x base theme: false diff --git a/core/modules/system/tests/themes/test_theme_settings_features/test_theme_settings_features.info.yml b/core/modules/system/tests/themes/test_theme_settings_features/test_theme_settings_features.info.yml index 5e8e9e63af4a40293cbae2c1f8f324ea5de3b791..fd71868fdcb8c6a58292734b13f12bce657e9847 100644 --- a/core/modules/system/tests/themes/test_theme_settings_features/test_theme_settings_features.info.yml +++ b/core/modules/system/tests/themes/test_theme_settings_features/test_theme_settings_features.info.yml @@ -1,7 +1,6 @@ name: Test features type: theme base theme: stable -core: 8.x description: 'Test theme to test theme settings with limited features.' features: - node_user_picture diff --git a/core/modules/system/tests/themes/test_theme_theme/test_theme_theme.info.yml b/core/modules/system/tests/themes/test_theme_theme/test_theme_theme.info.yml index c67a4be2c57cb4231136f2c468cda0835130278a..a7546c330a45ab6e358f1007569689443090aefd 100644 --- a/core/modules/system/tests/themes/test_theme_theme/test_theme_theme.info.yml +++ b/core/modules/system/tests/themes/test_theme_theme/test_theme_theme.info.yml @@ -2,5 +2,4 @@ name: 'Theme test theme.theme file' type: theme description: 'Test theme that extends theme settings options via theme.theme file' version: VERSION -core: 8.x base theme: false diff --git a/core/modules/system/tests/themes/test_theme_twig_registry_loader/test_theme_twig_registry_loader.info.yml b/core/modules/system/tests/themes/test_theme_twig_registry_loader/test_theme_twig_registry_loader.info.yml index af5ff08a8d60a3867022b6d4da6e83c3e575e75b..0f8bdc89eb626b037d8e16b8e86ae847ad699a1e 100644 --- a/core/modules/system/tests/themes/test_theme_twig_registry_loader/test_theme_twig_registry_loader.info.yml +++ b/core/modules/system/tests/themes/test_theme_twig_registry_loader/test_theme_twig_registry_loader.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Support module for Twig registry loader testing.' version: VERSION -core: 8.x diff --git a/core/modules/system/tests/themes/test_theme_twig_registry_loader_subtheme/test_theme_twig_registry_loader_subtheme.info.yml b/core/modules/system/tests/themes/test_theme_twig_registry_loader_subtheme/test_theme_twig_registry_loader_subtheme.info.yml index 74c3f359aa572da768dfe92bf143c2fb9a498f24..3263d375478f0c4961cfe23c44bae69333e891b2 100644 --- a/core/modules/system/tests/themes/test_theme_twig_registry_loader_subtheme/test_theme_twig_registry_loader_subtheme.info.yml +++ b/core/modules/system/tests/themes/test_theme_twig_registry_loader_subtheme/test_theme_twig_registry_loader_subtheme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: test_theme_twig_registry_loader_theme description: 'Support module for Twig registry loader testing.' version: VERSION -core: 8.x diff --git a/core/modules/system/tests/themes/test_theme_twig_registry_loader_theme/test_theme_twig_registry_loader_theme.info.yml b/core/modules/system/tests/themes/test_theme_twig_registry_loader_theme/test_theme_twig_registry_loader_theme.info.yml index 64455f5134d230b8f226aff8efedac9c4b7a100d..867c0b1bb36c43415545d7a9d9d025a7a3a2b083 100644 --- a/core/modules/system/tests/themes/test_theme_twig_registry_loader_theme/test_theme_twig_registry_loader_theme.info.yml +++ b/core/modules/system/tests/themes/test_theme_twig_registry_loader_theme/test_theme_twig_registry_loader_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: test_theme_twig_registry_loader description: 'Support module for Twig registry loader testing.' version: VERSION -core: 8.x diff --git a/core/modules/system/tests/themes/test_wild_west/test_wild_west.info.yml b/core/modules/system/tests/themes/test_wild_west/test_wild_west.info.yml index d1fcb829ff3f2972f5ae730ba463435480bc0fbd..bf9298a6557e8c5338a4b5042953415d4d2da638 100644 --- a/core/modules/system/tests/themes/test_wild_west/test_wild_west.info.yml +++ b/core/modules/system/tests/themes/test_wild_west/test_wild_west.info.yml @@ -3,4 +3,3 @@ type: theme description: A theme that doesn't use Stable as its base. It tests the wild west instead. version: VERSION base theme: false -core: 8.x diff --git a/core/modules/taxonomy/taxonomy.info.yml b/core/modules/taxonomy/taxonomy.info.yml index 8eccaf52f1dabba6f7fd89fab589ef97e51c44cb..2f95462f63e01fb997725b8dc25d51eec92aa6ce 100644 --- a/core/modules/taxonomy/taxonomy.info.yml +++ b/core/modules/taxonomy/taxonomy.info.yml @@ -3,7 +3,6 @@ type: module description: 'Enables the categorization of content.' package: Core version: VERSION -core: 8.x dependencies: - drupal:node - drupal:text diff --git a/core/modules/taxonomy/tests/modules/taxonomy_crud/taxonomy_crud.info.yml b/core/modules/taxonomy/tests/modules/taxonomy_crud/taxonomy_crud.info.yml index dcfeb619451b9374006deed4adca44b0945ba3cf..87c5a1494cffd6ec22ca6eea4fc4a22b681c8d78 100644 --- a/core/modules/taxonomy/tests/modules/taxonomy_crud/taxonomy_crud.info.yml +++ b/core/modules/taxonomy/tests/modules/taxonomy_crud/taxonomy_crud.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides 3rd party settings for vocabulary.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy diff --git a/core/modules/taxonomy/tests/modules/taxonomy_term_stub_test/taxonomy_term_stub_test.info.yml b/core/modules/taxonomy/tests/modules/taxonomy_term_stub_test/taxonomy_term_stub_test.info.yml index e857e9a7f43de432a02d38b989044c3f1f0450f1..c7285ffe75dabcbebbdb082678ab29c45d353288 100644 --- a/core/modules/taxonomy/tests/modules/taxonomy_term_stub_test/taxonomy_term_stub_test.info.yml +++ b/core/modules/taxonomy/tests/modules/taxonomy_term_stub_test/taxonomy_term_stub_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a migration plugin for stub testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy - drupal:migrate diff --git a/core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.info.yml b/core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.info.yml index 0cf7097c747c8b3c5face8607d519772cfd9e2aa..7c2a097f27f78fbeb9334abea6b699a733631596 100644 --- a/core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.info.yml +++ b/core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test hook implementations for taxonomy tests' package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy diff --git a/core/modules/taxonomy/tests/modules/taxonomy_test_views/taxonomy_test_views.info.yml b/core/modules/taxonomy/tests/modules/taxonomy_test_views/taxonomy_test_views.info.yml index 288410883461cb7a0bb594584a1760088848e937..e7588fc46ac661b33398a49149a77f8107fbf7a2 100644 --- a/core/modules/taxonomy/tests/modules/taxonomy_test_views/taxonomy_test_views.info.yml +++ b/core/modules/taxonomy/tests/modules/taxonomy_test_views/taxonomy_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views taxonomy tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy - drupal:views diff --git a/core/modules/taxonomy/tests/modules/vocabulary_serialization_test/vocabulary_serialization_test.info.yml b/core/modules/taxonomy/tests/modules/vocabulary_serialization_test/vocabulary_serialization_test.info.yml index ef00b57b2c3fbb7a3af46f8bdfc84d576c1c4eb3..185b7b7a55658295a8276c2ffe749b8fe4115d84 100644 --- a/core/modules/taxonomy/tests/modules/vocabulary_serialization_test/vocabulary_serialization_test.info.yml +++ b/core/modules/taxonomy/tests/modules/vocabulary_serialization_test/vocabulary_serialization_test.info.yml @@ -2,6 +2,5 @@ name: 'Vocabulary serialization test' type: module package: Testing version: VERSION -core: 8.x dependencies: - drupal:taxonomy diff --git a/core/modules/telephone/telephone.info.yml b/core/modules/telephone/telephone.info.yml index ab44ec0263a5ea0eaa7e2dd3dca9695c02808845..74b78da21b61a9532c8980ba045b13a01efb6f39 100644 --- a/core/modules/telephone/telephone.info.yml +++ b/core/modules/telephone/telephone.info.yml @@ -3,6 +3,5 @@ type: module description: 'Defines a field type for telephone numbers.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:field diff --git a/core/modules/text/text.info.yml b/core/modules/text/text.info.yml index 5f09ace218bd61bfce6904d4481441e43cc79ec3..5a8566700a86d36ffd6f568c16502d8a80fb5ef1 100644 --- a/core/modules/text/text.info.yml +++ b/core/modules/text/text.info.yml @@ -3,7 +3,6 @@ type: module description: 'Defines simple text field types.' package: Field types version: VERSION -core: 8.x dependencies: - drupal:field - drupal:filter diff --git a/core/modules/toolbar/tests/modules/toolbar_disable_user_toolbar/toolbar_disable_user_toolbar.info.yml b/core/modules/toolbar/tests/modules/toolbar_disable_user_toolbar/toolbar_disable_user_toolbar.info.yml index e97d0ea9d1a69f930ad737b0407eca1c0f8530e6..78dd4ff92b1258186313de9072352aed3c23faf7 100644 --- a/core/modules/toolbar/tests/modules/toolbar_disable_user_toolbar/toolbar_disable_user_toolbar.info.yml +++ b/core/modules/toolbar/tests/modules/toolbar_disable_user_toolbar/toolbar_disable_user_toolbar.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing toolbar without user toolbar' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.info.yml b/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.info.yml index 98fc607cc598e95d4d36ebfe11d9da55c2cb8a9a..a5f02e5e5da7cc6fae7b8448f58c9c793683c0d7 100644 --- a/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.info.yml +++ b/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for toolbar testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/toolbar/toolbar.info.yml b/core/modules/toolbar/toolbar.info.yml index d0114930b899c5ae3f24c8661405486a3254a2cb..3495343b4c77b222b659ce4da616565cdc2604a3 100644 --- a/core/modules/toolbar/toolbar.info.yml +++ b/core/modules/toolbar/toolbar.info.yml @@ -1,7 +1,6 @@ name: Toolbar type: module description: 'Provides a toolbar that shows the top-level administration menu items and links from other modules.' -core: 8.x package: Core version: VERSION dependencies: diff --git a/core/modules/tour/tests/tour_test/tour_test.info.yml b/core/modules/tour/tests/tour_test/tour_test.info.yml index a37d5d7a79281bfb8d7c84c609d23fb0711a2c78..7111abf8323d41e442b0631ba117b279f59994c8 100644 --- a/core/modules/tour/tests/tour_test/tour_test.info.yml +++ b/core/modules/tour/tests/tour_test/tour_test.info.yml @@ -3,6 +3,5 @@ type: module description: Tests module for tour module. package: Testing version: VERSION -core: 8.x dependencies: - drupal:tour diff --git a/core/modules/tour/tour.info.yml b/core/modules/tour/tour.info.yml index b9131629fb44740d96abf6d6fcc70830af736e42..912df7e6a05c66405630445863323fdf84c6f0b9 100644 --- a/core/modules/tour/tour.info.yml +++ b/core/modules/tour/tour.info.yml @@ -3,4 +3,3 @@ type: module description: Provides guided tours. package: Core version: VERSION -core: 8.x diff --git a/core/modules/tracker/tests/modules/tracker_test_views/tracker_test_views.info.yml b/core/modules/tracker/tests/modules/tracker_test_views/tracker_test_views.info.yml index 7e9f34fb496f185feb8f440572773d23ee683021..c925638876d4fa43aada0c9ce456623b2d951e5b 100644 --- a/core/modules/tracker/tests/modules/tracker_test_views/tracker_test_views.info.yml +++ b/core/modules/tracker/tests/modules/tracker_test_views/tracker_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views tracker tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:tracker - drupal:views diff --git a/core/modules/tracker/tracker.info.yml b/core/modules/tracker/tracker.info.yml index d855210676b0077445d97ce2b13d9e8fe4581fbc..4f1718f09fd37db42a036f7a13afe4e42000ce2d 100644 --- a/core/modules/tracker/tracker.info.yml +++ b/core/modules/tracker/tracker.info.yml @@ -6,4 +6,3 @@ dependencies: - drupal:comment package: Core version: VERSION -core: 8.x diff --git a/core/modules/update/tests/modules/aaa_update_test/aaa_update_test.info.yml b/core/modules/update/tests/modules/aaa_update_test/aaa_update_test.info.yml index c424e74f7a4c79c6305a72d4e57e93a880466441..19367eac8cd577f4c0fa120d2aa9da8e87646d57 100644 --- a/core/modules/update/tests/modules/aaa_update_test/aaa_update_test.info.yml +++ b/core/modules/update/tests/modules/aaa_update_test/aaa_update_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/update/tests/modules/bbb_update_test/bbb_update_test.info.yml b/core/modules/update/tests/modules/bbb_update_test/bbb_update_test.info.yml index 0c2226bcc3469672838f3cfe9797fb61e831f07d..caf515e34f4beaf800f83e6726b562ed4cc2c518 100644 --- a/core/modules/update/tests/modules/bbb_update_test/bbb_update_test.info.yml +++ b/core/modules/update/tests/modules/bbb_update_test/bbb_update_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/update/tests/modules/ccc_update_test/ccc_update_test.info.yml b/core/modules/update/tests/modules/ccc_update_test/ccc_update_test.info.yml index 6fcd4ec22637ed7d09ac993f4ced463de4d0738f..1bae19ba7a2bd9caf7ae8b37cb9705e201726b20 100644 --- a/core/modules/update/tests/modules/ccc_update_test/ccc_update_test.info.yml +++ b/core/modules/update/tests/modules/ccc_update_test/ccc_update_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/update/tests/modules/update_test/update_test.info.yml b/core/modules/update/tests/modules/update_test/update_test.info.yml index 053aafcfe0cae1b95ef52d907f505347f335f1c9..40db4f2a632d28836d8201125b782d03adaf43cb 100644 --- a/core/modules/update/tests/modules/update_test/update_test.info.yml +++ b/core/modules/update/tests/modules/update_test/update_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for update module testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/update/tests/src/Functional/UpdateUploadTest.php b/core/modules/update/tests/src/Functional/UpdateUploadTest.php index 10bec7ab2db5bb436dba0d6b612e8308289a600a..74cfc5770ba0a72f3ec3c295e9bdb12bbc65cfb9 100644 --- a/core/modules/update/tests/src/Functional/UpdateUploadTest.php +++ b/core/modules/update/tests/src/Functional/UpdateUploadTest.php @@ -99,7 +99,7 @@ public function testUploadModule() { // child site has access to, standard module API functions won't find it // when called here. To get the version, the info file must be parsed // directly instead. - $info_parser = new InfoParserDynamic(); + $info_parser = new InfoParserDynamic(DRUPAL_ROOT); $info = $info_parser->parse($installedInfoFilePath); $this->assertEqual($info['version'], '8.x-1.0'); diff --git a/core/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info.yml b/core/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info.yml index 49daccd3fdc06657b9029506d502c22056461149..6ebe041765aa2ede6d2788393776382dc69387ad 100644 --- a/core/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info.yml +++ b/core/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Test theme which acts as a base theme for other test subthemes.' version: VERSION -core: 8.x diff --git a/core/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info.yml b/core/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info.yml index 0921cc79f8d162a6c5fd4a53958ffb2bb01d1487..28a6540866a8f7423fd5b678b916e6328d10828c 100644 --- a/core/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info.yml +++ b/core/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info.yml @@ -2,5 +2,4 @@ name: 'Update test subtheme' type: theme description: 'Test theme which uses update_test_basetheme as the base theme.' version: VERSION -core: 8.x base theme: update_test_basetheme diff --git a/core/modules/update/update.info.yml b/core/modules/update/update.info.yml index b4536011d2c2568eb1b715f673976acffa00a1f3..0c363f44c28e739281aacfd7d5727f90a4683627 100644 --- a/core/modules/update/update.info.yml +++ b/core/modules/update/update.info.yml @@ -3,7 +3,6 @@ type: module description: 'Checks for available updates, and can securely install or update modules and themes via a web interface.' version: VERSION package: Core -core: 8.x configure: update.settings dependencies: - drupal:file diff --git a/core/modules/user/tests/modules/user_access_test/user_access_test.info.yml b/core/modules/user/tests/modules/user_access_test/user_access_test.info.yml index 5b1396332c0cf892a86b5b902f9b6ba66a64f6c1..9de89d0b374f8ae78f9224a3bb34720920bd4d99 100644 --- a/core/modules/user/tests/modules/user_access_test/user_access_test.info.yml +++ b/core/modules/user/tests/modules/user_access_test/user_access_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for user access testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/user/tests/modules/user_custom_phpass_params_test/user_custom_phpass_params_test.info.yml b/core/modules/user/tests/modules/user_custom_phpass_params_test/user_custom_phpass_params_test.info.yml index 68b8ff9a3c3af3d38569b8b501840b49699e3182..a54513dbc2ea2cacfbe91826ba7498c8e70b55c8 100644 --- a/core/modules/user/tests/modules/user_custom_phpass_params_test/user_custom_phpass_params_test.info.yml +++ b/core/modules/user/tests/modules/user_custom_phpass_params_test/user_custom_phpass_params_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing custom phpass password algorithm parameters.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/user/tests/modules/user_form_test/user_form_test.info.yml b/core/modules/user/tests/modules/user_form_test/user_form_test.info.yml index e77ebf28cb74ee7e5eaf219de7a2a980c0bd39fb..9065011235732607d2c2bda9965270ccbdd445ce 100644 --- a/core/modules/user/tests/modules/user_form_test/user_form_test.info.yml +++ b/core/modules/user/tests/modules/user_form_test/user_form_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for user form testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/user/tests/modules/user_hooks_test/user_hooks_test.info.yml b/core/modules/user/tests/modules/user_hooks_test/user_hooks_test.info.yml index 2e56f1736d677b75be054d104e28d73349f45bfc..0f56897b268f4f3fb0277dee5c37257a4c482dae 100644 --- a/core/modules/user/tests/modules/user_hooks_test/user_hooks_test.info.yml +++ b/core/modules/user/tests/modules/user_hooks_test/user_hooks_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for user hooks testing.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/user/tests/modules/user_test_views/user_test_views.info.yml b/core/modules/user/tests/modules/user_test_views/user_test_views.info.yml index b89ea6c0aab6427ec872e3c0f1684dbc56672db1..83fca3717ee953fc564e4aca80b14fa5b74adc39 100644 --- a/core/modules/user/tests/modules/user_test_views/user_test_views.info.yml +++ b/core/modules/user/tests/modules/user_test_views/user_test_views.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides default views for views user tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:user - drupal:views diff --git a/core/modules/user/tests/themes/user_test_theme/user_test_theme.info.yml b/core/modules/user/tests/themes/user_test_theme/user_test_theme.info.yml index f37cd0c78f9d56b4f4cf17db6531eb5713aa3874..827d183d236f7cc9f64653fb7d8765b83412c96d 100644 --- a/core/modules/user/tests/themes/user_test_theme/user_test_theme.info.yml +++ b/core/modules/user/tests/themes/user_test_theme/user_test_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: 'Theme for testing the available fields in user twig template' version: VERSION -core: 8.x diff --git a/core/modules/user/user.info.yml b/core/modules/user/user.info.yml index 86faf68a685329eeeebbbb3fc3444bfabb32ead5..57044fde67f4763def06a976d7e4487254c1865c 100644 --- a/core/modules/user/user.info.yml +++ b/core/modules/user/user.info.yml @@ -3,7 +3,6 @@ type: module description: 'Manages the user registration and login system.' package: Core version: VERSION -core: 8.x required: true configure: user.admin_index dependencies: diff --git a/core/modules/views/tests/modules/action_bulk_test/action_bulk_test.info.yml b/core/modules/views/tests/modules/action_bulk_test/action_bulk_test.info.yml index e80c7504f0cbe34ae8c782b2ffdadf3be3115515..b09827fb6f326268364a6411c934d01a57687237 100644 --- a/core/modules/views/tests/modules/action_bulk_test/action_bulk_test.info.yml +++ b/core/modules/views/tests/modules/action_bulk_test/action_bulk_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for action bulk form testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views - drupal:node diff --git a/core/modules/views/tests/modules/user_batch_action_test/user_batch_action_test.info.yml b/core/modules/views/tests/modules/user_batch_action_test/user_batch_action_test.info.yml index 931dfc2b6cc80fcb83987c07037194de849368eb..31a8f01ba78b55d89d08d76382755509a969a7bb 100644 --- a/core/modules/views/tests/modules/user_batch_action_test/user_batch_action_test.info.yml +++ b/core/modules/views/tests/modules/user_batch_action_test/user_batch_action_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Support module for user batch action testing.' package: Testing version: VERSION -core: 8.x dependencies: - views - user diff --git a/core/modules/views/tests/modules/views_entity_test/views_entity_test.info.yml b/core/modules/views/tests/modules/views_entity_test/views_entity_test.info.yml index dfa9747d021939baeac2f40ecef51690be652d7d..1580fa282cdd80dfb09c1190756dfbea9d2cd80c 100644 --- a/core/modules/views/tests/modules/views_entity_test/views_entity_test.info.yml +++ b/core/modules/views/tests/modules/views_entity_test/views_entity_test.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides base fields for views tests of entity_test entity type.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views - drupal:entity_test diff --git a/core/modules/views/tests/modules/views_test_cacheable_metadata_calculation/views_test_cacheable_metadata_calculation.info.yml b/core/modules/views/tests/modules/views_test_cacheable_metadata_calculation/views_test_cacheable_metadata_calculation.info.yml index e8c1664b91ba0e3d38296175a9814aab60a4bd77..f55455bfb4a4012880ddf8c56898ee924c9e5dbc 100644 --- a/core/modules/views/tests/modules/views_test_cacheable_metadata_calculation/views_test_cacheable_metadata_calculation.info.yml +++ b/core/modules/views/tests/modules/views_test_cacheable_metadata_calculation/views_test_cacheable_metadata_calculation.info.yml @@ -3,6 +3,5 @@ type: module description: 'Module to test cacheable metadata calculation in Views.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/views/tests/modules/views_test_config/views_test_config.info.yml b/core/modules/views/tests/modules/views_test_config/views_test_config.info.yml index 36a09f374324b72c10e047ee52c015225bdd1967..31c06ddc29dfbb7898f0f7d6fb2306704b5109e3 100644 --- a/core/modules/views/tests/modules/views_test_config/views_test_config.info.yml +++ b/core/modules/views/tests/modules/views_test_config/views_test_config.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides default views for tests.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/views/tests/modules/views_test_data/views_test_data.info.yml b/core/modules/views/tests/modules/views_test_data/views_test_data.info.yml index 6a18bb07031798f4fd8db543b546a230b1ad7cfd..9da878ebeaa86e0e278785d42d747890fc0f6b5e 100644 --- a/core/modules/views/tests/modules/views_test_data/views_test_data.info.yml +++ b/core/modules/views/tests/modules/views_test_data/views_test_data.info.yml @@ -3,6 +3,5 @@ type: module description: 'Test module for Views.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/views/tests/modules/views_test_formatter/views_test_formatter.info.yml b/core/modules/views/tests/modules/views_test_formatter/views_test_formatter.info.yml index 16d3a4b0c011fc3038356f75bc0fe220c6463b97..e4b867a17259954988c4be2a6b78b6321ea7d791 100644 --- a/core/modules/views/tests/modules/views_test_formatter/views_test_formatter.info.yml +++ b/core/modules/views/tests/modules/views_test_formatter/views_test_formatter.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides test field formatters.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/views/tests/modules/views_test_language/views_test_language.info.yml b/core/modules/views/tests/modules/views_test_language/views_test_language.info.yml index ced53bd129a3ac24e7763e7796ccaf3d96f717d6..c589fe8b6d901c7a248a1e6d2af33bc2f89bfabd 100644 --- a/core/modules/views/tests/modules/views_test_language/views_test_language.info.yml +++ b/core/modules/views/tests/modules/views_test_language/views_test_language.info.yml @@ -3,7 +3,6 @@ type: module description: 'Test module for Views.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views - drupal:language diff --git a/core/modules/views/tests/modules/views_test_modal/views_test_modal.info.yml b/core/modules/views/tests/modules/views_test_modal/views_test_modal.info.yml index 59be6d4e51fb88a8d761e2042e8d8820614eee16..1b5bfd1169736e78a5cac354497c607f992cebb2 100644 --- a/core/modules/views/tests/modules/views_test_modal/views_test_modal.info.yml +++ b/core/modules/views/tests/modules/views_test_modal/views_test_modal.info.yml @@ -3,7 +3,6 @@ type: module description: 'Provides a test page that renders a View in a modal.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:node - drupal:views diff --git a/core/modules/views/tests/modules/views_test_query_access/views_test_query_access.info.yml b/core/modules/views/tests/modules/views_test_query_access/views_test_query_access.info.yml index eb54049ccad1e228ba5e4557e067a1aa918ddb6d..39458f458eb58b5e81cf76842a5bf18117cf664d 100644 --- a/core/modules/views/tests/modules/views_test_query_access/views_test_query_access.info.yml +++ b/core/modules/views/tests/modules/views_test_query_access/views_test_query_access.info.yml @@ -3,6 +3,5 @@ type: module description: 'Module to test entity query access in Views.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views diff --git a/core/modules/views/tests/modules/views_test_rss/views_test_rss.info.yml b/core/modules/views/tests/modules/views_test_rss/views_test_rss.info.yml index 3cc94385f0e61a71de879b67ed80a23bfb0f640a..33921d51c105c187bad87eb29bce2cce39f687d4 100644 --- a/core/modules/views/tests/modules/views_test_rss/views_test_rss.info.yml +++ b/core/modules/views/tests/modules/views_test_rss/views_test_rss.info.yml @@ -3,4 +3,3 @@ type: module description: 'Provides hooks to alter RSS output for testing purposes.' package: Testing version: VERSION -core: 8.x diff --git a/core/modules/views/tests/themes/views_test_checkboxes_theme/views_test_checkboxes_theme.info.yml b/core/modules/views/tests/themes/views_test_checkboxes_theme/views_test_checkboxes_theme.info.yml index 3b1ce5f2a484be36acd3f96925fe939d0b0fcd10..76e057276a5a3d394ddc113ccf3c1b96fd6b710a 100644 --- a/core/modules/views/tests/themes/views_test_checkboxes_theme/views_test_checkboxes_theme.info.yml +++ b/core/modules/views/tests/themes/views_test_checkboxes_theme/views_test_checkboxes_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: Theme for testing Views rendering of checkboxes. version: VERSION -core: 8.x diff --git a/core/modules/views/tests/themes/views_test_theme/views_test_theme.info.yml b/core/modules/views/tests/themes/views_test_theme/views_test_theme.info.yml index ac40cf9c4d420d1375fbf70cc83a59ab2e003927..4c1a29d7e10c6486f2f05c96c70f7284904178f8 100644 --- a/core/modules/views/tests/themes/views_test_theme/views_test_theme.info.yml +++ b/core/modules/views/tests/themes/views_test_theme/views_test_theme.info.yml @@ -3,4 +3,3 @@ type: theme base theme: stable description: Theme for testing Views functionality. version: VERSION -core: 8.x diff --git a/core/modules/views/views.info.yml b/core/modules/views/views.info.yml index e0a2154f57ef0dbc6e1a3d0cc156b2a8a5b0db35..ed4708f2282f906fad7873cd13d2d42e1ed0fc6d 100644 --- a/core/modules/views/views.info.yml +++ b/core/modules/views/views.info.yml @@ -3,6 +3,5 @@ type: module description: 'Create customized lists and queries from your database.' package: Core version: VERSION -core: 8.x dependencies: - drupal:filter diff --git a/core/modules/views_ui/tests/modules/views_ui_test/views_ui_test.info.yml b/core/modules/views_ui/tests/modules/views_ui_test/views_ui_test.info.yml index fdc05c570cd7a92656d6ac5ff1af0193b6a70026..3870436cf633239bf7350b999cf629edf5c0cfda 100644 --- a/core/modules/views_ui/tests/modules/views_ui_test/views_ui_test.info.yml +++ b/core/modules/views_ui/tests/modules/views_ui_test/views_ui_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Test module for Views UI.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views_ui diff --git a/core/modules/views_ui/tests/modules/views_ui_test_field/views_ui_test_field.info.yml b/core/modules/views_ui/tests/modules/views_ui_test_field/views_ui_test_field.info.yml index b1f932490b1cdaad658fcfb7f5043f753c92c4f9..29280206e375669852c21fe3ec5355367bedcb08 100644 --- a/core/modules/views_ui/tests/modules/views_ui_test_field/views_ui_test_field.info.yml +++ b/core/modules/views_ui/tests/modules/views_ui_test_field/views_ui_test_field.info.yml @@ -3,6 +3,5 @@ type: module description: 'Add custom global field for testing purposes.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:views_ui diff --git a/core/modules/views_ui/views_ui.info.yml b/core/modules/views_ui/views_ui.info.yml index b79eec4a18930d6ba694fe2f039e666d2d35df07..fcb76588068cd091e001c7e082de6d6303127aed 100644 --- a/core/modules/views_ui/views_ui.info.yml +++ b/core/modules/views_ui/views_ui.info.yml @@ -3,7 +3,6 @@ type: module description: 'Administrative interface for Views.' package: Core version: VERSION -core: 8.x configure: entity.view.collection dependencies: - drupal:views diff --git a/core/modules/workflows/tests/modules/workflow_third_party_settings_test/workflow_third_party_settings_test.info.yml b/core/modules/workflows/tests/modules/workflow_third_party_settings_test/workflow_third_party_settings_test.info.yml index d3c8d70854b56394474ffdad2ec0c1ab452b7b45..6e3dfe7cc85f1bbac9cf149a60d381f688721a3d 100644 --- a/core/modules/workflows/tests/modules/workflow_third_party_settings_test/workflow_third_party_settings_test.info.yml +++ b/core/modules/workflows/tests/modules/workflow_third_party_settings_test/workflow_third_party_settings_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Allows third party settings on workflows to be tested.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:workflows diff --git a/core/modules/workflows/tests/modules/workflow_type_test/workflow_type_test.info.yml b/core/modules/workflows/tests/modules/workflow_type_test/workflow_type_test.info.yml index a6ce6e87783a9d5e31fe8f312c132c61fc8e087b..2b92637134d951e5034c3ac2e6a3bb9d9f7ca1dd 100644 --- a/core/modules/workflows/tests/modules/workflow_type_test/workflow_type_test.info.yml +++ b/core/modules/workflows/tests/modules/workflow_type_test/workflow_type_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides a workflow type plugin for testing.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:workflows diff --git a/core/modules/workflows/workflows.info.yml b/core/modules/workflows/workflows.info.yml index 70370bc57c60f90fd72a3b70e855ae5cfea1ad62..9bf079d6ceef6e4609784e8e5a4794589e899343 100644 --- a/core/modules/workflows/workflows.info.yml +++ b/core/modules/workflows/workflows.info.yml @@ -2,6 +2,5 @@ name: 'Workflows' type: module description: 'Provides an interface to create workflows with transitions between different states (for example publication or user status) provided by other modules.' version: VERSION -core: 8.x package: Core configure: entity.workflow.collection diff --git a/core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.info.yml b/core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.info.yml index 7b4a00932d3cb020e85f1d50f3d4e10f5fe7316b..784deadb3fa0176764588742291270601b0f89e5 100644 --- a/core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.info.yml +++ b/core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.info.yml @@ -3,6 +3,5 @@ type: module description: 'Provides supporting code for testing access for workspaces.' package: Testing version: VERSION -core: 8.x dependencies: - drupal:workspaces diff --git a/core/modules/workspaces/workspaces.info.yml b/core/modules/workspaces/workspaces.info.yml index ebfa2f059d942b7a2dcb9cdaa40e5f50bf89ff96..11ac79a222a2bfc3256ac27dedac52d3ebaa26fd 100644 --- a/core/modules/workspaces/workspaces.info.yml +++ b/core/modules/workspaces/workspaces.info.yml @@ -2,7 +2,6 @@ name: Workspaces type: module description: 'Allows users to stage content or preview a full site by using multiple workspaces on a single site.' version: VERSION -core: 8.x package: Core (Experimental) configure: entity.workspace.collection dependencies: diff --git a/core/profiles/demo_umami/demo_umami.info.yml b/core/profiles/demo_umami/demo_umami.info.yml index c2efc4464ed9eeb03814ff6a17693b77b55ad0e1..a962fb53bf83cb6bf6693d94708df807918be4b9 100644 --- a/core/profiles/demo_umami/demo_umami.info.yml +++ b/core/profiles/demo_umami/demo_umami.info.yml @@ -2,7 +2,6 @@ name: 'Demo: Umami Food Magazine (Experimental)' type: profile description: 'Install an example site that shows off some of Drupal’s capabilities.' version: VERSION -core: 8.x install: - node - history diff --git a/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.info.yml b/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.info.yml index cbcba264c3e9aa969580a3db72bb7e0fe6335519..928957465b0d09c4136e3c13718a3ee06121f28c 100644 --- a/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.info.yml +++ b/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.info.yml @@ -2,7 +2,6 @@ name: 'Umami demo: Content' description: Imports the content for the Umami demo. type: module version: VERSION -core: 8.x package: 'Core (Experimental)' hidden: true dependencies: diff --git a/core/profiles/demo_umami/themes/umami/umami.info.yml b/core/profiles/demo_umami/themes/umami/umami.info.yml index b3ae46e022d352500e7ae558a53628e8642b6f3c..253dda49890ccc59561882b65a4de73021bd1c94 100644 --- a/core/profiles/demo_umami/themes/umami/umami.info.yml +++ b/core/profiles/demo_umami/themes/umami/umami.info.yml @@ -3,7 +3,6 @@ type: theme base theme: classy description: 'The theme used for the Umami food magazine demonstration site.' version: VERSION -core: 8.x libraries: - umami/global - umami/messages diff --git a/core/profiles/minimal/minimal.info.yml b/core/profiles/minimal/minimal.info.yml index b0ec74eff7cba6332556cf8eed1ff4bed31720c8..e15cf830ba73c3bef130fd391b24eb64cbf1d0fd 100644 --- a/core/profiles/minimal/minimal.info.yml +++ b/core/profiles/minimal/minimal.info.yml @@ -2,7 +2,6 @@ name: Minimal type: profile description: 'Build a custom site without pre-configured functionality. Suitable for advanced users.' version: VERSION -core: 8.x install: - node - block diff --git a/core/profiles/nightwatch_testing/nightwatch_testing.info.yml b/core/profiles/nightwatch_testing/nightwatch_testing.info.yml index b1198093da217d8625962a8b97400f883a44ac1a..04289408ed9338d09c2d28762b79d06f59d34c08 100644 --- a/core/profiles/nightwatch_testing/nightwatch_testing.info.yml +++ b/core/profiles/nightwatch_testing/nightwatch_testing.info.yml @@ -2,7 +2,6 @@ name: Nightwatch Testing type: profile description: 'Minimal profile for running Nightwatch tests. Includes absolutely required modules only.' version: VERSION -core: 8.x hidden: true install: - js_deprecation_log_test diff --git a/core/profiles/standard/standard.info.yml b/core/profiles/standard/standard.info.yml index b4730ba4587492a608195f9e2f5a84a97850e7e3..db75b17723077b5d3a930bcd55f0d75c3738f2fb 100644 --- a/core/profiles/standard/standard.info.yml +++ b/core/profiles/standard/standard.info.yml @@ -2,7 +2,6 @@ name: Standard type: profile description: 'Install with commonly used features pre-configured.' version: VERSION -core: 8.x install: - node - history diff --git a/core/profiles/testing/modules/drupal_system_cross_profile_test/drupal_system_cross_profile_test.info.yml b/core/profiles/testing/modules/drupal_system_cross_profile_test/drupal_system_cross_profile_test.info.yml index 5a8715fb34219def4c32d5238309ee3f4d4d12f4..044d24e6bbf80db1abea27032299b3c5b1a75e63 100644 --- a/core/profiles/testing/modules/drupal_system_cross_profile_test/drupal_system_cross_profile_test.info.yml +++ b/core/profiles/testing/modules/drupal_system_cross_profile_test/drupal_system_cross_profile_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing that a module in one profile can be reused in another profile.' package: Testing version: VERSION -core: 8.x diff --git a/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml b/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml index 30bccf712226980c97364c779664f670b4fa046a..78a297633a8ff8749540917b90786dc3d45ea751 100644 --- a/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml +++ b/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Support module for testing the drupal_system_listing function.' package: Testing version: VERSION -core: 8.x diff --git a/core/profiles/testing/testing.info.yml b/core/profiles/testing/testing.info.yml index 834198a7436625090eb05dbb5af00fc2db405c97..4606daaf7baffdb744e75c6b6e5fe67323dc5258 100644 --- a/core/profiles/testing/testing.info.yml +++ b/core/profiles/testing/testing.info.yml @@ -2,7 +2,6 @@ name: Testing type: profile description: 'Minimal profile for running tests. Includes absolutely required modules only.' version: VERSION -core: 8.x hidden: true install: # Enable page_cache and dynamic_page_cache in testing, to ensure that as many diff --git a/core/profiles/testing_config_import/testing_config_import.info.yml b/core/profiles/testing_config_import/testing_config_import.info.yml index 7e57b4c9a6b6c818e7d3cfcd3a6d50ce08e1471f..29f5e5239e10f0586a50e1b92ab90681e5da18d6 100644 --- a/core/profiles/testing_config_import/testing_config_import.info.yml +++ b/core/profiles/testing_config_import/testing_config_import.info.yml @@ -2,7 +2,6 @@ name: 'Testing config import' type: profile description: 'Tests install profiles in the config importer.' version: VERSION -core: 8.x hidden: true install: - syslog diff --git a/core/profiles/testing_config_overrides/testing_config_overrides.info.yml b/core/profiles/testing_config_overrides/testing_config_overrides.info.yml index 2862811928a20bb5609c8fed4d842e035faf3ad5..6b6b55d34e6300813dd9f4ca76a1473c9ef36cf2 100644 --- a/core/profiles/testing_config_overrides/testing_config_overrides.info.yml +++ b/core/profiles/testing_config_overrides/testing_config_overrides.info.yml @@ -2,7 +2,9 @@ name: Testing config overrides type: profile description: 'Minimal profile for running tests with config overrides in a profile.' version: VERSION -core: 8.x +# This profile is copied to a non-core location by +# \Drupal\Tests\config\Functional\ConfigInstallProfileUnmetDependenciesTest. +core_version_requirement: '*' hidden: true install: - action diff --git a/core/profiles/testing_install_profile_all_dependencies/testing_install_profile_all_dependencies.info.yml b/core/profiles/testing_install_profile_all_dependencies/testing_install_profile_all_dependencies.info.yml index 01c7e17645ee5b9a1a66af05bd995faee3fcb6b2..0459bf017ebdc1d95271f2dc41b3dbe9578dc9ed 100644 --- a/core/profiles/testing_install_profile_all_dependencies/testing_install_profile_all_dependencies.info.yml +++ b/core/profiles/testing_install_profile_all_dependencies/testing_install_profile_all_dependencies.info.yml @@ -2,7 +2,6 @@ name: 'Testing install profile all dependencies' type: profile description: 'Profile for testing that install profiles can require a module.' version: VERSION -core: 8.x hidden: true dependencies: - ban diff --git a/core/profiles/testing_install_profile_dependencies/testing_install_profile_dependencies.info.yml b/core/profiles/testing_install_profile_dependencies/testing_install_profile_dependencies.info.yml index 778e4d19d7c54e274c874d87ea87f1562f75c935..ce179854192f58886295bad276548ddf531cb135 100644 --- a/core/profiles/testing_install_profile_dependencies/testing_install_profile_dependencies.info.yml +++ b/core/profiles/testing_install_profile_dependencies/testing_install_profile_dependencies.info.yml @@ -2,7 +2,6 @@ name: 'Testing install profile dependencies' type: profile description: 'Profile for testing that install profiles can require a module.' version: VERSION -core: 8.x hidden: true dependencies: - dblog diff --git a/core/profiles/testing_install_profile_dependencies_bc/testing_install_profile_dependencies_bc.info.yml b/core/profiles/testing_install_profile_dependencies_bc/testing_install_profile_dependencies_bc.info.yml index 7c4b7bf2248ec0512ace29117caddf7461474425..7a99743b08176aa1e90932aaa091fa2d12157774 100644 --- a/core/profiles/testing_install_profile_dependencies_bc/testing_install_profile_dependencies_bc.info.yml +++ b/core/profiles/testing_install_profile_dependencies_bc/testing_install_profile_dependencies_bc.info.yml @@ -2,7 +2,6 @@ name: 'Testing install profile dependencies BC layer' type: profile description: 'Profile for testing BC layer for profile dependencies.' version: VERSION -core: 8.x hidden: true dependencies: - dblog diff --git a/core/profiles/testing_missing_dependencies/testing_missing_dependencies.info.yml b/core/profiles/testing_missing_dependencies/testing_missing_dependencies.info.yml index 5532efdb7adf541a8296017fa7143e16a5dcc86c..e770e4e8b08734ab4735eca60080b0276f49ab39 100644 --- a/core/profiles/testing_missing_dependencies/testing_missing_dependencies.info.yml +++ b/core/profiles/testing_missing_dependencies/testing_missing_dependencies.info.yml @@ -2,7 +2,6 @@ name: 'Testing missing dependencies' type: profile description: 'Minimal profile for running a test when dependencies are listed but missing.' version: VERSION -core: 8.x hidden: true install: - block diff --git a/core/profiles/testing_multilingual/testing_multilingual.info.yml b/core/profiles/testing_multilingual/testing_multilingual.info.yml index d2f7d35e2891180abb4e6b199d6230cc8298682a..9539b492b22c44c61e758230156280921f7c3bad 100644 --- a/core/profiles/testing_multilingual/testing_multilingual.info.yml +++ b/core/profiles/testing_multilingual/testing_multilingual.info.yml @@ -2,7 +2,6 @@ name: Testing multilingual type: profile description: 'Minimal profile for running tests with a multilingual installer.' version: VERSION -core: 8.x hidden: true install: - locale diff --git a/core/profiles/testing_multilingual_with_english/testing_multilingual_with_english.info.yml b/core/profiles/testing_multilingual_with_english/testing_multilingual_with_english.info.yml index c5e53b26b5b8b1debc0205906ded1aa1829fa844..37f05594524e28a1c4b79829de7aa43cd63055a6 100644 --- a/core/profiles/testing_multilingual_with_english/testing_multilingual_with_english.info.yml +++ b/core/profiles/testing_multilingual_with_english/testing_multilingual_with_english.info.yml @@ -2,7 +2,6 @@ name: 'Testing multilingual with English' type: profile description: 'Minimal profile for running tests with a multilingual installer.' version: VERSION -core: 8.x hidden: true install: - locale diff --git a/core/profiles/testing_requirements/testing_requirements.info.yml b/core/profiles/testing_requirements/testing_requirements.info.yml index a0e3e4f01d7562453763643174703730ab84310d..15c1d1f032a4e385f9cc26be56dcf2ba1827f40c 100644 --- a/core/profiles/testing_requirements/testing_requirements.info.yml +++ b/core/profiles/testing_requirements/testing_requirements.info.yml @@ -2,5 +2,4 @@ name: 'Testing requirements' type: profile description: 'Profile for testing hook_requirements().' version: VERSION -core: 8.x hidden: true diff --git a/core/profiles/testing_site_config/testing_site_config.info.yml b/core/profiles/testing_site_config/testing_site_config.info.yml index 31a390557e08aee495b2c60602547d1cf634b702..9e89c2060ecd785db2079fae3052aa204d0bd64a 100644 --- a/core/profiles/testing_site_config/testing_site_config.info.yml +++ b/core/profiles/testing_site_config/testing_site_config.info.yml @@ -2,5 +2,4 @@ name: Testing site config type: profile description: 'Minimal profile for testing with default site config.' version: VERSION -core: 8.x hidden: true diff --git a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileExistingSettingsTest.php b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileExistingSettingsTest.php index d64d016e99c44753cee2c1a8c72a2d4c42404d34..ee97a023f401076c86d342d4a460415246005010 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileExistingSettingsTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileExistingSettingsTest.php @@ -29,7 +29,7 @@ protected function prepareEnvironment() { parent::prepareEnvironment(); $this->info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Distribution profile', 'distribution' => [ 'name' => 'My Distribution', diff --git a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTest.php b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTest.php index 00819cb02d1c56ab369d161f4c15650f01e25fe0..51e702f40b0a644a746e61460bc01ff0a2325824 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTest.php @@ -22,7 +22,7 @@ protected function prepareEnvironment() { parent::prepareEnvironment(); $this->info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Distribution profile', 'distribution' => [ 'name' => 'My Distribution', diff --git a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php index d3bac1acfd8b3ed7c068b6589ff24e9b32833b0d..e4a447f5e6cfefb45e9bd13f0c0de3de50e21160 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php @@ -32,7 +32,7 @@ protected function prepareEnvironment() { parent::prepareEnvironment(); $this->info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Distribution profile', 'distribution' => [ 'name' => 'My Distribution', diff --git a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php index 49e7193ae88ea8d83f80e7acbe6d2027fbaec86d..ac6697a0276a480cbc2748f453110eab09fc7f43 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php @@ -30,9 +30,11 @@ class DistributionProfileTranslationTest extends InstallerTestBase { */ protected function prepareEnvironment() { parent::prepareEnvironment(); + // We set core_version_requirement to '*' for the test so that it does not + // need to be updated between major versions. $this->info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Distribution profile', 'distribution' => [ 'name' => 'My Distribution', diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php index 5ce2fce1da32b4ad35e5433cca5cb0304af34ac7..1dc67879695c67ec31c79fe779fb55f1ef7334bd 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php @@ -33,10 +33,11 @@ protected function prepareEnvironment() { $this->profile = $core_extension['profile']; } - // Create a profile for testing. + // Create a profile for testing. We set core_version_requirement to '*' for + // the test so that it does not need to be updated between major versions. $info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Configuration installation test profile (' . $this->profile . ')', ]; diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerNonEnglishProfileWithoutLocaleModuleTest.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerNonEnglishProfileWithoutLocaleModuleTest.php index 54a9fc13361f4ad4f4c3118f0a8425730698e0e3..1ae12c7115a807b7bdafdede85a6ef0283a58157 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/InstallerNonEnglishProfileWithoutLocaleModuleTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerNonEnglishProfileWithoutLocaleModuleTest.php @@ -30,10 +30,12 @@ protected function prepareEnvironment() { parent::prepareEnvironment(); // Create a self::PROFILE testing profile that depends on the 'language' - // module but not on 'locale' module. + // module but not on 'locale' module. We set core_version_requirement to '*' + // for the test so that it does not need to be updated between major + // versions. $profile_info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => 'Test with language but without locale', 'install' => ['language'], ]; diff --git a/core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php b/core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php index 14ff26da994ab3f0d945c6cbda6db40ec4ac1d7a..4ced7a704e5134bd832bb80eeec6fc66cbc67687 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php @@ -27,7 +27,7 @@ protected function prepareEnvironment() { foreach (['distribution_one', 'distribution_two'] as $name) { $info = [ 'type' => 'profile', - 'core' => \Drupal::CORE_COMPATIBILITY, + 'core_version_requirement' => '*', 'name' => $name . ' profile', 'distribution' => [ 'name' => $name, diff --git a/core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php b/core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php index 974941466b68f989c7c315598d3bc3d8c576d1bb..176671183679371e011604d724d2d92d2e35e625 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php @@ -7,7 +7,6 @@ use Drupal\Core\Extension\InfoParser; use Drupal\Core\Extension\InfoParserInterface; use Drupal\Core\Extension\ThemeExtensionList; -use Drupal\Core\Test\TestDatabase; use Drupal\KernelTests\KernelTestBase; use org\bovigo\vfs\vfsStream; @@ -63,10 +62,7 @@ public function register(ContainerBuilder $container) { protected function setUpFilesystem() { parent::setUpFilesystem(); - $test_db = new TestDatabase($this->databasePrefix); - $test_site_path = $test_db->getTestSitePath(); - - $test_site_dir = $this->vfsRoot->getChild($test_site_path); + $vfs_root = vfsStream::setup('core'); vfsStream::create([ 'themes' => [ 'test_stable' => [ @@ -78,17 +74,7 @@ protected function setUpFilesystem() { 'stable.theme' => file_get_contents(DRUPAL_ROOT . '/core/themes/stable/stable.theme'), ], ], - ], $test_site_dir); - - // The origin site search directory used by the extension discovery service - // relies on the \Drupal::service('site.path') service to determine which - // directories to scan. It then prepends the root to each of those - // directories. But ::bootKernel() sets the origin site to - // $this->siteDirectory, which was in turns updated by ::setUpFileSystem() - // to include the virtual file system root. We must undo this if we want to - // use extension discovery on a virtual system. - // @see \Drupal\Core\Extension\ExtensionDiscovery::ORIGIN_SITE - $this->siteDirectory = $test_site_path; + ], $vfs_root); } /** @@ -99,8 +85,8 @@ protected function setUpFilesystem() { */ public function testStableIsDefault() { $this->container->get('extension.list.theme') - ->setExtensionDiscovery(new ExtensionDiscovery('vfs://root')) - ->setInfoParser(new VfsInfoParser()); + ->setExtensionDiscovery(new ExtensionDiscovery('vfs://core')) + ->setInfoParser(new VfsInfoParser('vfs:/')); $this->themeInstaller->install(['test_stable']); $this->config('system.theme')->set('default', 'test_stable')->save(); @@ -165,7 +151,7 @@ class VfsInfoParser extends InfoParser { * {@inheritdoc} */ public function parse($filename) { - return parent::parse("vfs://root/$filename"); + return parent::parse("vfs://core/$filename"); } } diff --git a/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php b/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php index 24eeae44ff145d4c17c4c3f8690e425a6f5def0e..75f30ca7a1aa9bb600822316bbc1c2233bf69da4 100644 --- a/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php +++ b/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php @@ -32,8 +32,8 @@ class InfoParserUnitTest extends UnitTestCase { */ protected function setUp() { parent::setUp(); - - $this->infoParser = new InfoParser(); + // Use a fake DRUPAL_ROOT. + $this->infoParser = new InfoParser('vfs:/'); } /** @@ -349,7 +349,7 @@ public function testInfoParserMissingKey() { */ public function testInfoParserCommonInfo() { $common = <<<COMMONTEST -core: 8.x +core_version_requirement: '*' name: common_test type: module description: 'testing info file parsing' @@ -371,12 +371,37 @@ public function testInfoParserCommonInfo() { $this->assertEquals($info_values['simple_string'], 'A simple string', 'Simple string value was parsed correctly.'); $this->assertEquals($info_values['version'], \Drupal::VERSION, 'Constant value was parsed correctly.'); $this->assertEquals($info_values['double_colon'], 'dummyClassName::method', 'Value containing double-colon was parsed correctly.'); - $this->assertSame('8.x', $info_values['core']); - $this->assertFalse(isset($info_values['core_version_requirement'])); $this->assertFalse($info_values['core_incompatible']); } } + /** + * Tests common info file. + * + * @covers ::parse + */ + public function testInfoParserCoreInfo() { + $common = <<<CORETEST +name: core_test +type: module +version: "VERSION" +description: 'testing info file parsing' +CORETEST; + + vfsStream::setup('core'); + + $filename = "core_test.info.txt"; + vfsStream::create([ + 'fixtures' => [ + $filename => $common, + ], + ]); + $info_values = $this->infoParser->parse(vfsStream::url("core/fixtures/$filename")); + $this->assertEquals($info_values['version'], \Drupal::VERSION, 'Constant value was parsed correctly.'); + $this->assertFalse($info_values['core_incompatible']); + $this->assertEquals(\Drupal::VERSION, $info_values['core_version_requirement']); + } + /** * @covers ::parse * @@ -439,12 +464,11 @@ public function providerCoreIncompatibility() { } /** - * Test a profile info file with the 'core_version_requirement' key. + * Test a profile info file. */ - public function testInvalidProfile() { + public function testProfile() { $profile = <<<PROFILE_TEST -core: 8.x -core_version_requirement: ^8 +core_version_requirement: '*' name: The Perfect Profile type: profile description: 'This profile makes Drupal perfect. You should have no complaints.' @@ -456,9 +480,8 @@ public function testInvalidProfile() { 'invalid_profile.info.txt' => $profile, ], ]); - $this->expectException('\Drupal\Core\Extension\InfoParserException'); - $this->expectExceptionMessage("The 'core_version_requirement' key is not supported in profiles in vfs://profiles/fixtures/invalid_profile.info.txt"); - $this->infoParser->parse(vfsStream::url('profiles/fixtures/invalid_profile.info.txt')); + $info = $this->infoParser->parse(vfsStream::url('profiles/fixtures/invalid_profile.info.txt')); + $this->assertFalse($info['core_incompatible']); } /** diff --git a/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php b/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php index 03f2af113f61ca89995292efb4dbd2f60e3b316a..5cb104f62813d1b1c9f4b9792194546e51aba9da 100644 --- a/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php +++ b/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php @@ -53,7 +53,7 @@ public function testRebuildThemeDataWithThemeParents() { $info_parser->parse(Argument::that($argument_condition)) ->shouldBeCalled() ->will(function ($file) use ($root) { - $info_parser = new InfoParser(); + $info_parser = new InfoParser($root); return $info_parser->parse($root . '/' . $file[0]); }); @@ -124,7 +124,7 @@ public function testGetBaseThemes(array $themes, $theme, array $expected) { $state = new State(new KeyValueMemoryFactory(), new MemoryBackend(), new NullLockBackend()); $config_factory = $this->getConfigFactoryStub([]); $theme_engine_list = $this->prophesize(ThemeEngineExtensionList::class); - $theme_listing = new ThemeExtensionList($this->root, 'theme', new NullBackend('test'), new InfoParser(), $module_handler->reveal(), $state, $config_factory, $theme_engine_list->reveal(), 'test'); + $theme_listing = new ThemeExtensionList($this->root, 'theme', new NullBackend('test'), new InfoParser($this->root), $module_handler->reveal(), $state, $config_factory, $theme_engine_list->reveal(), 'test'); $base_themes = $theme_listing->getBaseThemes($themes, $theme); diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.info.yml b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.info.yml index 7ae9fde9e5b8a27983d784314e709ec8638f2fef..9e59573925128434f36c3ab6f50ccbe0a9dd8e90 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.info.yml +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test module enabled by default in module handler unit tests.' package: Testing version: VERSION -core: 8.x diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_added/module_handler_test_added.info.yml b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_added/module_handler_test_added.info.yml index cb16fb73a929e8e3fb2e4ccee1e66aaa675c461c..29986390dccd98cfb2f6b3740c4e61c3cbeff37d 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_added/module_handler_test_added.info.yml +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_added/module_handler_test_added.info.yml @@ -3,5 +3,4 @@ type: module description: 'Test module used to test adding a module during runtime.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all1/module_handler_test_all1.info.yml b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all1/module_handler_test_all1.info.yml index c6dabc6a7790c83649da226bfa9ce6b19d2afc37..3dadcb8caeba761b60355b10a2225292292bf64a 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all1/module_handler_test_all1.info.yml +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all1/module_handler_test_all1.info.yml @@ -3,5 +3,4 @@ type: module description: 'Test module used to test adding groups of modules with loadAll during runtime.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all2/module_handler_test_all2.info.yml b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all2/module_handler_test_all2.info.yml index 38aa79bf72d6a3ab5063386eb5ff406e39165e17..6f020db971d3ca17c178fdbcdcbbdf1e3de21244 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all2/module_handler_test_all2.info.yml +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_all2/module_handler_test_all2.info.yml @@ -3,5 +3,4 @@ type: module description: 'Test module used to test adding groups of modules with loadAll during runtime.' package: Testing version: VERSION -core: 8.x hidden: true diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_no_hook/module_handler_test_no_hook.info.yml b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_no_hook/module_handler_test_no_hook.info.yml index 589c3aca373523e578680f0f43f24be5dc34d387..085dc145d49758b3f15d1e62be3087c3e203ac95 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_no_hook/module_handler_test_no_hook.info.yml +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test_no_hook/module_handler_test_no_hook.info.yml @@ -3,4 +3,3 @@ type: module description: 'Test module used to test modules that do not implement a hook.' package: Testing version: VERSION -core: 8.x diff --git a/core/tests/Drupal/Tests/Core/Test/TestDiscoveryTest.php b/core/tests/Drupal/Tests/Core/Test/TestDiscoveryTest.php index 4b9bbbe3ed67af3d538b92644a17ef955a8dce0a..b37260800b48bf130c357ce0a152085bb4e03f3e 100644 --- a/core/tests/Drupal/Tests/Core/Test/TestDiscoveryTest.php +++ b/core/tests/Drupal/Tests/Core/Test/TestDiscoveryTest.php @@ -314,13 +314,13 @@ class FunctionalExampleTest {} $test_profile_info = <<<EOF name: Testing type: profile -core: 8.x +core_version_requirement: '*' EOF; $test_module_info = <<<EOF name: Testing type: module -core: 8.x +core_version_requirement: '*' EOF; vfsStream::create([ diff --git a/core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php b/core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php index 4ebecb6097ac822ffb5ed91f00ee53908aea2f96..64a6bad790a3a8ee8e1185f82ba959b3a99141bc 100644 --- a/core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php +++ b/core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @@ -37,13 +37,13 @@ protected function setupBasicModules() { $info_a = <<<'EOS' type: module name: Module A -core: 8.x +core_version_requirement: '*' EOS; $info_b = <<<'EOS' type: module name: Module B -core: 8.x +core_version_requirement: '*' EOS; $module_a = <<<'EOS' diff --git a/core/tests/fixtures/test_stable/test_stable.info.yml b/core/tests/fixtures/test_stable/test_stable.info.yml index 52f3fd139227ea88c151c6ab9dc9e73c1c7cc0d3..ede1ac5a003ef178d0956074150e0ed2d5434774 100644 --- a/core/tests/fixtures/test_stable/test_stable.info.yml +++ b/core/tests/fixtures/test_stable/test_stable.info.yml @@ -2,4 +2,3 @@ name: Test Stable type: theme description: A theme to test that stable is set as the default. version: VERSION -core: 8.x diff --git a/core/themes/bartik/bartik.info.yml b/core/themes/bartik/bartik.info.yml index 130d583c91689774cab916549506d1635a19cfda..2ee5a4b35286b8929398d6a25927251e3bceafcb 100644 --- a/core/themes/bartik/bartik.info.yml +++ b/core/themes/bartik/bartik.info.yml @@ -17,7 +17,6 @@ base theme: classy description: 'A flexible, recolorable theme with many regions and a responsive, mobile-first layout.' package: Core version: VERSION -core: 8.x libraries: - bartik/global-styling ckeditor_stylesheets: diff --git a/core/themes/claro/claro.info.yml b/core/themes/claro/claro.info.yml index 55f43b606cd7c834ffef7caa516ad0045f5504b7..8fd2a11420a2620a953f140f45620f7eb80a073f 100644 --- a/core/themes/claro/claro.info.yml +++ b/core/themes/claro/claro.info.yml @@ -18,7 +18,6 @@ alt text: 'Screenshot of Claro, Drupal administration theme.' package: Core version: VERSION experimental: true -core: 8.x libraries: - claro/global-styling libraries-override: diff --git a/core/themes/classy/classy.info.yml b/core/themes/classy/classy.info.yml index 161b5394752a130c0bfebf950ca5afe90b591b9a..ce192b6a0b95efeb9c1cb21617a0c99ad9e21c7c 100644 --- a/core/themes/classy/classy.info.yml +++ b/core/themes/classy/classy.info.yml @@ -4,7 +4,6 @@ base theme: stable description: 'A base theme with sensible default CSS classes added. Learn how to use Classy as a base theme in the <a href="https://www.drupal.org/docs/8/theming">Drupal 8 Theming Guide</a>.' package: Core version: VERSION -core: 8.x hidden: true libraries: diff --git a/core/themes/engines/twig/twig.info.yml b/core/themes/engines/twig/twig.info.yml index 17673841c8b895c9a8576b69a33e001bd64bc7e5..4966e0679d78b60bc0333b2328e29b2a66218277 100644 --- a/core/themes/engines/twig/twig.info.yml +++ b/core/themes/engines/twig/twig.info.yml @@ -1,5 +1,4 @@ type: theme_engine name: Twig -core: 8.x version: VERSION package: Core diff --git a/core/themes/seven/seven.info.yml b/core/themes/seven/seven.info.yml index f00d39591485ca8fb8899f9e44bb2a4af6911c81..f7172a0d1fb203e93cb9f171d398850c8a369ea4 100644 --- a/core/themes/seven/seven.info.yml +++ b/core/themes/seven/seven.info.yml @@ -18,7 +18,6 @@ description: 'The default administration theme for Drupal 8 was designed with cl alt text: 'Default administration theme for Drupal 8 with simple blocks and clean lines.' package: Core version: VERSION -core: 8.x libraries: - seven/global-styling libraries-override: diff --git a/core/themes/stable/stable.info.yml b/core/themes/stable/stable.info.yml index 0f20f7c604b7f3ac73c95e804ac084abeea6ecb9..450b01da08da6e59d46fe6e50fd127117283a0c5 100644 --- a/core/themes/stable/stable.info.yml +++ b/core/themes/stable/stable.info.yml @@ -3,7 +3,6 @@ type: theme description: A default base theme using Drupal 8.0.0's core markup and CSS. package: Core version: VERSION -core: 8.x base theme: false hidden: true diff --git a/core/themes/stark/stark.info.yml b/core/themes/stark/stark.info.yml index fde79829596140b9ca9e5bcf2725b24a2e156e78..d8c812cc36f0bd06d2e1d0d97c0d732eba4a9377 100644 --- a/core/themes/stark/stark.info.yml +++ b/core/themes/stark/stark.info.yml @@ -3,5 +3,4 @@ type: theme description: 'An intentionally plain theme with no styling to demonstrate default Drupal’s HTML and CSS. Learn how to build a custom theme from Stark in the <a href="https://www.drupal.org/docs/8/theming">Theming Guide</a>.' package: Core version: VERSION -core: 8.x base theme: false