From 39402561ed02f1f7de4c5cf13f9746600d1c8396 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 13 Sep 2024 07:25:27 +0200 Subject: [PATCH] Composer: prevent a lock file from being created Composer 1.10.0 introduced a `lock` config option, which, when set to `false` will prevent a `composer.lock` file from being created and will ignore it when one exists. This is a useful option for packages such as this where the `lock` file has no meaning. It also makes life easier for contributors as they don't have to remember that for this repo they should use `composer update` instead of `composer install`. Both will now work the same. Refs: https://getcomposer.org/doc/06-config.md#lock --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b4ab6d3..c1d5977 100644 --- a/composer.json +++ b/composer.json @@ -24,6 +24,7 @@ "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true - } + }, + "lock": false } }