From ae3a0d2ef3081115714be7a0cc82f39d66c5faba Mon Sep 17 00:00:00 2001
From: Toby Zerner <toby.zerner@gmail.com>
Date: Sun, 11 Oct 2015 11:18:30 +1030
Subject: [PATCH] Add more info to composer.json

---
 framework/core/composer.json | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/framework/core/composer.json b/framework/core/composer.json
index a7b82dae2..64c21d58a 100644
--- a/framework/core/composer.json
+++ b/framework/core/composer.json
@@ -1,12 +1,24 @@
 {
     "name": "flarum/core",
-    "description": "",
+    "description": "Delightfully simple forum software.",
+    "keywords": ["forum", "discussion"],
+    "homepage": "http://flarum.org",
+    "license": "MIT",
     "authors": [
         {
             "name": "Toby Zerner",
-            "email": "toby@flarum.org"
+            "email": "toby.zerner@gmail.com"
+        },
+        {
+            "name": "Franz Liedke",
+            "email": "franz.liedke@gmail.com"
         }
     ],
+    "support": {
+        "issues": "https://github.com/flarum/core/issues",
+        "source": "https://github.com/flarum/core",
+        "docs": "http://flarum.org/docs"
+    },
     "require": {
         "php": ">=5.5.9",
         "illuminate/bus": "5.1.*",
@@ -59,6 +71,6 @@
     },
     "scripts": {
         "test": "vendor/bin/phpunit -c tests/phpunit.xml",
-        "style": "phpcs --standard=PSR2 -np src"
+        "style": "vendor/bin/phpcs --standard=PSR2 -np src"
     }
 }