diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-26 07:23:03 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-26 07:23:03 +0200 |
commit | bc924c8a213e0872b14d6a09831d28e196834b1a (patch) | |
tree | 4bd8ce1284631c9fecae32b30cdb21b61fbb6a86 /composer.json | |
parent | 5432c783241e6ad3334089d6f7344681fac35006 (diff) |
php-phpunit-phploc: 3.0.1
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..df3df57 --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "phploc/phploc", + "description": "A tool for quickly measuring the size of a PHP project.", + "homepage": "https://github.com/sebastianbergmann/phploc", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phploc/issues" + }, + "require": { + "php": ">=5.3.3", + "sebastian/finder-facade": "~1.1", + "sebastian/git": "~2.0", + "sebastian/version": "~1.0.3", + "symfony/console": "~2.5" + }, + "require-dev": { + "phpunit/phpunit": "~4" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "bin": [ + "phploc" + ], + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + } +} |