From e1a7878a462057064d2931197298cd5d8e049b62 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 15 Jul 2026 15:33:45 +0100 Subject: [PATCH] chore(composer): complete composer.json metadata --- composer.json | 42 +++++++++++++++++++++++++++++++++++------- 1 file changed, 35 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 71396e6..3c77cac 100644 --- a/composer.json +++ b/composer.json @@ -3,17 +3,45 @@ "description": "Debounce FPC cache purges to a set schedule", "type": "magento2-module", "require": { - "php": "^7.0|^8.0" + "php": "^7.0|^8.0" }, - "license": ["MIT"], + "license": [ + "MIT" + ], "autoload": { - "files": ["registration.php"], - "psr-4": { - "SamJUK\\CacheDebounce\\": "" - } + "files": [ + "registration.php" + ], + "psr-4": { + "SamJUK\\CacheDebounce\\": "" + } }, "require-dev": { "phpunit/phpunit": "^10.5", "phpstan/phpstan": "^1.12" - } + }, + "homepage": "https://github.com/SamJUK/m2-module-cache-debounce", + "authors": [ + { + "name": "Sam James", + "email": "sam@samdjames.uk", + "homepage": "https://www.samdjames.uk" + } + ], + "keywords": [ + "magento2", + "magento 2", + "magento2-module", + "adobe-commerce", + "extension", + "cache", + "full-page-cache", + "fpc", + "varnish", + "cache-invalidation", + "debounce", + "throttle", + "performance", + "open-source" + ] }