From 49acfaaf2c60726ab86c4e4803ef11af43f8d7e7 Mon Sep 17 00:00:00 2001 From: vikas srivastava Date: Sat, 29 Sep 2012 14:36:04 +0530 Subject: [PATCH] Bug : Removed errors from Composer.json Contains some minor bugs : 1 - JSON doesn't allow multi line string so making "description" field in single line. 2 - Author Info should contain at-least one author "name" , "email" pair. --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3df0420..96ee4a6 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,17 @@ { "name": "silverstripe/blog", - "description": "The blog module allows you to post blogs on your SilverStripe. - It includes the ability to post blogs using a site front-end form. Blogs are - summarised on the blog holder page type, with more detail viewable when a specific blog is clicked. - ", + "description": "The blog module allows you to post blogs on your SilverStripe.It includes the ability to post blogs using a site front-end form. Blogs are summarised on the blog holder page type, with more detail viewable when a specific blog is clicked.", "type": "silverstripe-module", "keywords": ["silverstripe", "blog"], "authors": [ { "name": "Saophalkun Ponlu", + "email": "phalkunz@silverstripe.com" + }, { "name": "Carlos Barberis", + "email": "carlos@silverstripe.com" } ],