From 80e3077c3b4f3b26df29def9a8dae8e669559e80 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 15 Jul 2026 15:33:52 +0100 Subject: [PATCH] chore(composer): complete composer.json metadata --- composer.json | 41 ++++++++++++++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index aedc265..9610578 100644 --- a/composer.json +++ b/composer.json @@ -3,17 +3,44 @@ "description": "Adds ability to set fetch priority attributes, preload/prefetch links for admin content. As well as a public API for extension from 3rd party modules", "type": "magento2-module", "require": { - "php": "^7.4|^8.0" + "php": "^7.4|^8.0" }, - "license": ["MIT"], + "license": [ + "MIT" + ], "autoload": { - "files": ["registration.php"], - "psr-4": { - "SamJUK\\FetchPriority\\": "" - } + "files": [ + "registration.php" + ], + "psr-4": { + "SamJUK\\FetchPriority\\": "" + } }, "require-dev": { "phpunit/phpunit": "^10.5", "phpstan/phpstan": "^1.12" - } + }, + "homepage": "https://github.com/SamJUK/m2-module-fetch-priority", + "authors": [ + { + "name": "Sam James", + "email": "sam@samdjames.uk", + "homepage": "https://www.samdjames.uk" + } + ], + "keywords": [ + "magento2", + "magento 2", + "magento2-module", + "adobe-commerce", + "extension", + "performance", + "page-speed", + "core-web-vitals", + "preload", + "prefetch", + "fetchpriority", + "lcp", + "open-source" + ] }