From e88a831bd1082dbd00b75fb2263d22da3654f7a0 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 14 Apr 2012 12:00:01 +0200 Subject: [PATCH] Update JSON schema --- res/composer-schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/res/composer-schema.json b/res/composer-schema.json index 3a43aba3e..c11ed953e 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -90,14 +90,14 @@ "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": true }, - "recommend": { + "require-dev": { "type": "object", - "description": "This is a hash of package name (keys) and version constraints (values) that this package recommends to be installed (typically this will be installed as well).", + "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": true }, "suggest": { "type": "object", - "description": "This is a hash of package name (keys) and version constraints (values) that this package suggests work well with it (typically this will only be suggested to the user).", + "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": true }, "config": {