Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.4 KB

File metadata and controls

50 lines (39 loc) · 1.4 KB

OpenEuropa content project

This module provides the corporate project content type.

Installation

Before enabling this module, make sure that the following modules are present in your codebase by adding them to your composer.json and by running composer update:

"require": {
    "drupal/composite_reference": "~1.0@alpha",
    "drupal/entity_reference_revisions": "~1.3",
    "drupal/field_group": "~3.0",
    "drupal/inline_entity_form": "~1.0-rc8",
}

The field_group module requires the following patches to be applied:

"patches": {
    "drupal/field_group": {
        "https://www.drupal.org/project/field_group/issues/2787179#comment-13467953": "https://www.drupal.org/files/issues/2020-02-17/2787179-highlight-html5-validation-45.patch"
    },
}

The inline_entity_form module requires the following patches to be applied:

"patches": {
    "drupal/inline_entity_form": {
        "https://www.drupal.org/project/inline_entity_form/issues/2875716": "https://www.drupal.org/files/issues/2020-11-05/ief_removed_references_2875716-89.patch"
    }
}

In order to apply the patches above add the following to your project's composer.json file:

"require": {
    "cweagans/composer-patches": "^1.6"
},
"extra": {
    "enable-patching": true
}

For more information check cweagans/composer-patches documentation here.