From 2df96bcad35f6bb52ab5f4d4887751ee961e24f8 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sun, 19 Feb 2012 21:15:51 +0100 Subject: [PATCH] [schema] Fix invalid JSON --- Resources/composer-schema.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Resources/composer-schema.json b/Resources/composer-schema.json index e4b9c4162..62d6be0ed 100644 --- a/Resources/composer-schema.json +++ b/Resources/composer-schema.json @@ -149,43 +149,43 @@ "properties": { "pre-install-cmd": { "type": ["array", "string"], - "description": "Occurs before the install command is executed, contains one or more Class::method callables.", + "description": "Occurs before the install command is executed, contains one or more Class::method callables." }, "post-install-cmd": { "type": ["array", "string"], - "description": "Occurs after the install command is executed, contains one or more Class::method callables.", + "description": "Occurs after the install command is executed, contains one or more Class::method callables." }, "pre-update-cmd": { "type": ["array", "string"], - "description": "Occurs before the update command is executed, contains one or more Class::method callables.", + "description": "Occurs before the update command is executed, contains one or more Class::method callables." }, "post-update-cmd": { "type": ["array", "string"], - "description": "Occurs after the update command is executed, contains one or more Class::method callables.", + "description": "Occurs after the update command is executed, contains one or more Class::method callables." }, "pre-package-install": { "type": ["array", "string"], - "description": "Occurs before a package is installed, contains one or more Class::method callables.", + "description": "Occurs before a package is installed, contains one or more Class::method callables." }, "post-package-install": { "type": ["array", "string"], - "description": "Occurs after a package is installed, contains one or more Class::method callables.", + "description": "Occurs after a package is installed, contains one or more Class::method callables." }, "pre-package-update": { "type": ["array", "string"], - "description": "Occurs before a package is updated, contains one or more Class::method callables.", + "description": "Occurs before a package is updated, contains one or more Class::method callables." }, "post-package-update": { "type": ["array", "string"], - "description": "Occurs after a package is updated, contains one or more Class::method callables.", + "description": "Occurs after a package is updated, contains one or more Class::method callables." }, "pre-package-uninstall": { "type": ["array", "string"], - "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables.", + "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables." }, "post-package-uninstall": { "type": ["array", "string"], - "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables.", + "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables." } } }