From 88b1bf02d465e4719056b9486f222267678af2c0 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 10 Nov 2024 13:19:58 +0100 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 libraries 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 691a210..75daa8d 100644 --- a/composer.json +++ b/composer.json @@ -46,7 +46,8 @@ "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true - } + }, + "lock": false }, "scripts": { "lint": [