From 49c38d6e40afdaa29f9a2f76aba865d78324fc06 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 16 Oct 2022 17:50:33 +0200 Subject: [PATCH] [BUGFIX] Do not check `composer.lock` during `composer normalize` (#641) This package does not ship a `composer.lock`, and hence `composer normalize` should not check that file. Fixes #640 --- CHANGELOG.md | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96daecb..22fd793 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Drop support for PHP 7.2 and 7.3 (#581) ### Fixed +- Do not check `composer.lock` during `composer normalize` (#641) - Require TYPO3 >= 11.5.4 (#643) - Stop relying on transitive dependencies for `psr/http-message` (#613) diff --git a/composer.json b/composer.json index 5d5da70..8e5dd35 100644 --- a/composer.json +++ b/composer.json @@ -105,7 +105,7 @@ "ci": [ "@ci:static" ], - "ci:composer:normalize": "@composer normalize --dry-run", + "ci:composer:normalize": "@composer normalize --no-check-lock --dry-run", "ci:coverage": [ "@ci:coverage:unit", "@ci:coverage:functional"