From 46e1a0e0dab0e5545a5a6a0286975d45c28c59a9 Mon Sep 17 00:00:00 2001 From: Konstantinos Platis <konstantinos.platis@cern.ch> Date: Fri, 4 Dec 2020 14:57:42 +0000 Subject: [PATCH] Add composer.json file --- CHANGELOG.md | 4 ++++ cern_components.info.yml | 2 +- composer.json | 25 +++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 composer.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d03b047..dfc05456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.7.6] - 04/12/2020 + +- Add composer.json file + ## [2.7.5] - 28/10/2020 - Fix image gallery component not rendering thumbnails in Chrome/Safari diff --git a/cern_components.info.yml b/cern_components.info.yml index 8b15e53f..8ac1869b 100755 --- a/cern_components.info.yml +++ b/cern_components.info.yml @@ -2,7 +2,7 @@ name: "CERN Components" type: module description: "Provides all the necessary modules regarding CERN Web Components." core: 8.x -version: 2.7.5 +version: 2.7.6 package: CERN Components dependencies: - components:components (>=8.x-1.1-alpha1) diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..80672155 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "drupal/cern-components", + "description": "Defines a set of re-usable patterns for the CERN Drupal infrastructure", + "version": "2.7.6", + "type": "drupal-custom-module", + "license": "GPL-2.0-or-later", + "authors": [ + { + "name": "Konstantinos Platis", + "email": "konstantinos.platis@cern.ch" + } + ], + "repositories": [ + { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + ], + "require": { + "drupal/components": "^1.1", + "drupal/ui_patterns": "^1.2", + "drupal/cern-full-html-format": "^2.0.2", + "drupal/twig_tweak": "^2.8" + } +} -- GitLab