From ff194fafc4c808a0c1207846b37a3d8a852acafd Mon Sep 17 00:00:00 2001 From: Alwin Drenth Date: Fri, 28 Oct 2022 09:56:25 +0200 Subject: [PATCH 1/2] Add missing composer repository --- CHANGELOG.md | 5 +++++ composer.json | 13 +++++++++++++ updates/version.yaml | 1 + 3 files changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d6231..f37d4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.1.1] - 2022-10-28 + +### Added +- Add missing Composer repository + ## [2.1.0] - 2022-10-28 ### Added diff --git a/composer.json b/composer.json index cdb6e25..bbd6d3c 100644 --- a/composer.json +++ b/composer.json @@ -13,5 +13,18 @@ "php": "^8.0.2", "composer/installers": "^1.0 || ^2.0", "october/system": "^2.0 || ^3.0" + }, + "repositories": [ + { + "type": "composer", + "url": "https://gateway.octobercms.com" + } + ], + "archive": { + "exclude": [ + ".gitattributes", + ".github", + ".gitignore" + ] } } diff --git a/updates/version.yaml b/updates/version.yaml index 048109c..af04852 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -8,3 +8,4 @@ v2.0.2: "Minor improvements -- See: CHANGELOG.md" v2.0.3: "Fixes type error when using `csrf_token()` Twig function" v2.0.4: "Maintenance release" v2.1.0: "Add support for October CMS 3.x" +v2.1.1: "Add missing composer repository" From 3e56c998ac0d969eab6842f7de91e58cee2d0977 Mon Sep 17 00:00:00 2001 From: Alwin Drenth Date: Fri, 28 Oct 2022 09:58:38 +0200 Subject: [PATCH 2/2] Add composer allow-plugins configuration --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index bbd6d3c..3eed75f 100644 --- a/composer.json +++ b/composer.json @@ -26,5 +26,10 @@ ".github", ".gitignore" ] + }, + "config": { + "allow-plugins": { + "composer/installers": true + } } }