From 91260ede5023d8340a752c95546906137bc6983a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 27 Mar 2024 11:58:00 +0100 Subject: [PATCH] Composer: add keywords As of Composer 2.4, Composer will recommend putting a dependency in `require-dev` over `require` when certain keywords are encountered. As PHP Parallel Lint should be placed in `require-dev`, this commit adds those keywords to trigger this notification for end-users (when needed). Closes 134 Co-authored-by: Markus Staab --- composer.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/composer.json b/composer.json index 55b8cc3..2e3caac 100644 --- a/composer.json +++ b/composer.json @@ -3,6 +3,10 @@ "description": "This tool checks the syntax of PHP files about 20x faster than serial check.", "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint", "license": "BSD-2-Clause", + "keywords": [ + "lint", + "static analysis" + ], "authors": [ { "name": "Jakub Onderka",