Commit 28fac75c authored by Kristiaan Van den Eynde's avatar Kristiaan Van den Eynde
Browse files

Issue #3367539 by zcht, hernani, kristiaanvandeneynde: Initiative for Group...

Issue #3367539 by zcht, hernani, kristiaanvandeneynde: Initiative for Group 1.x compatibility under Drupal 10
parent ad346527
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  "name": "drupal/group",
  "type": "drupal-module",
  "description": "This module allows you to group users, content and other entities",
  "homepage": "http://drupal.org/project/group",
  "homepage": "https://drupal.org/project/group",
  "authors": [
    {
      "name": "Kristiaan Van den Eynde",
@@ -17,7 +17,7 @@
  "license": "GPL-2.0-or-later",
  "minimum-stability": "dev",
  "require": {
    "drupal/entity": "^1.2",
    "drupal/variationcache": "^1.1"
    "drupal/entity": "^1.4",
    "drupal/variationcache": "^1.3"
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ name: 'Group'
description: 'Allows you to group users, content and other entities'
package: 'Group'
type: 'module'
core_version_requirement: ^9.3 || ^10
core_version_requirement: ^9.5 || ^10
configure: 'group.settings'
dependencies:
  - 'drupal:options'
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ name: 'Group Node'
description: 'Enables Group functionality for the Node module'
package: 'Group'
type: 'module'
core_version_requirement: ^9.3 || ^10
core_version_requirement: ^9.5 || ^10
dependencies:
  - 'drupal:node'
  - 'group:group'
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ class EntityOperationsTest extends GroupEntityOperationsTest {
  /**
   * {@inheritdoc}
   */
  public static $modules = ['gnode'];
  protected static $modules = ['gnode'];

  /**
   * {@inheritdoc}
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ class GroupNodeConfigTest extends EntityKernelTestBase {
   *
   * @var array
   */
  public static $modules = ['group', 'options', 'entity', 'variationcache', 'node', 'gnode', 'views'];
  protected static $modules = ['group', 'options', 'entity', 'variationcache', 'node', 'gnode', 'views'];

  /**
   * Tests that the module's config installs properly.
Loading