From 1780a3c7cfcebbd02a4ddda67d66fa3bf80bf4e5 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 31 Oct 2016 14:07:52 +0100 Subject: php-sebastian-code-unit-reverse-lookup: switch to fedora autoloader --- composer.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a23bbef --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "sebastian/code-unit-reverse-lookup", + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "require": { + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "~5" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} -- cgit