From dac2f038479bf8dc5b68263c1f85dfb1cf68592a Mon Sep 17 00:00:00 2001 From: Tobias Munk Date: Fri, 31 May 2013 11:47:31 +0200 Subject: [PATCH] added script events to schema --- res/composer-schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/res/composer-schema.json b/res/composer-schema.json index 972d01dac..343b1bf9f 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -290,6 +290,14 @@ "post-autoload-dump": { "type": ["array", "string"], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." + }, + "post-root-package-install": { + "type": ["array", "string"], + "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." + }, + "post-create-project-cmd": { + "type": ["array", "string"], + "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } },