From 086eeefd3e63c594441f9a722faddfc14a34c559 Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Sat, 17 Feb 2018 01:14:52 +0000 Subject: [PATCH] Add tags and support URLs to the composer.json file --- composer.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 2e6b832..9addd7b 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,25 @@ { "name": "stevegrunwell/wp-cache-remember", "description": "Helper for the WordPress object cache and transients", - "type": "wordpress-plugin", + "type": "wordpress-muplugin", "license": "MIT", + "keywords": [ + "wordpress", + "wordpress-plugin", + "wordpress-object-cache", + "wordpress-transients" + ], "authors": [ { "name": "Steve Grunwell", - "email": "steve@stevegrunwell.com" + "email": "steve@stevegrunwell.com", + "homepage": "https://stevegrunwell.com" } ], + "support": { + "issues": "https://github.com/stevegrunwell/wp-cache-remember/issues", + "source": "https://github.com/stevegrunwell/wp-cache-remember" + }, "minimum-stability": "stable", "require": { "php": ">=5.2",