From bc924c8a213e0872b14d6a09831d28e196834b1a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 Apr 2016 07:23:03 +0200 Subject: php-phpunit-phploc: 3.0.1 --- composer.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } + } +} -- cgit