Skip to content

Commit

Permalink
Improved composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ravage84 committed Oct 10, 2014
1 parent 768fd15 commit 96ea201
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,47 @@
{
"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.*"
},
"require-dev": {
"phpunit/phpunit": "*"
},

"autoload": {
"psr-0": {
"PHPMD\\": "src/main/php"
}
},

"bin": ["src/bin/phpmd"]
}

0 comments on commit 96ea201

Please sign in to comment.