From 96ea2013027679ddf044416bee87872968474a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Fri, 10 Oct 2014 17:55:02 +0200 Subject: [PATCH] Improved composer.json --- composer.json | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 33886f045..75ea0b1bf 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,36 @@ { "name": "phpmd/phpmd", - "description": "Official version of PHPMD handled with Composer.", - "license": "BSD-3-Clause", - - "minimum-stability" : "stable", - - "require": { + "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.", + "keywords":[ + "phpmd", + "pdepend", + "pmd", + "mess detection", + "mess detector" + ], + "type": "project", + "license": "BSD-3-Clause", + "homepage": "http://phpmd.org/", + "authors": [ + { + "name": "Manuel Pichler", + "homepage": "https://github.com/manuelpichler", + "mail": "github@manuel-pichler.de", + "role": "Project founder" + }, + { + "name": "Other contributors", + "homepage": "https://github.com/phpmd/phpmd/graphs/contributors", + "role": "Contributors" + } + ], + "support": { + "irc": "irc://irc.freenode.org/phpmd" + }, + "minimum-stability" : "stable", + "require": { "php": ">=5.3.0", "pdepend/pdepend": "2.0.*", - "symfony/dependency-injection": "2.5.*", "symfony/filesystem": "2.5.*", "symfony/config": "2.5.*" @@ -16,12 +38,10 @@ "require-dev": { "phpunit/phpunit": "*" }, - "autoload": { "psr-0": { "PHPMD\\": "src/main/php" } }, - "bin": ["src/bin/phpmd"] }