From 430c6f39721c74ad96a68c8103c2899947c1cd7e Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 21 Nov 2015 14:13:13 +0000 Subject: [PATCH] Allow string in abandoned format as well, refs #4621 --- res/composer-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/composer-schema.json b/res/composer-schema.json index a9a5df2b4..9dc285ddf 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -444,8 +444,8 @@ } }, "abandoned": { - "type": ["boolean"], - "description": "Indicates whether this package has been abandoned. Defaults to false." + "type": ["boolean", "string"], + "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." } } }