summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-04-21 15:34:06 +0200
committerRemi Collet <fedora@famillecollet.com>2016-04-21 15:34:06 +0200
commit6a34e15da3b4977860f47de1926c57b92a600b02 (patch)
tree2a49fe6e4c6b4a0e0a0b54cbd0db09366d510f71 /composer.json
parent5a40a474b3e69cbf679a54f50c030bf5f13ac79a (diff)
php-phpmd-PHP-PMD: 2.4.3
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..eb31b63
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,54 @@
+{
+ "name": "phpmd/phpmd",
+ "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",
+ "email": "github@manuel-pichler.de",
+ "role": "Project Founder"
+ },
+ {
+ "name": "Marc Würth",
+ "homepage": "https://github.com/ravage84",
+ "email": "ravage@bluewin.ch",
+ "role": "Project Maintainer"
+ },
+ {
+ "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.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.0",
+ "squizlabs/php_codesniffer": "^2.0"
+ },
+ "autoload": {
+ "psr-0": {
+ "PHPMD\\": "src/main/php"
+ }
+ },
+ "bin": ["src/bin/phpmd"],
+ "scripts": {
+ "test": "phpunit"
+ }
+}