From 016ff095f2c533f24ffde7d6b4b62a6069ce24bb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 17 Mar 2020 15:03:46 +0100 Subject: import from Fedora --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..190fc01 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "webflo/drupal-finder", + "description": "Helper class to locate a Drupal installation from a given path.", + "license": "GPL-2.0+", + "type": "library", + "authors": [ + { + "name": "Florian Weber", + "email": "florian@webflo.org" + } + ], + "require": { + "ext-json": "*" + }, + "autoload": { + "classmap": [ + "src/DrupalFinder.php" + ] + }, + "autoload-dev": { + "psr-4": { + "DrupalFinder\\Tests\\": "tests/" + } + }, + "require-dev": { + "phpunit/phpunit": "^4.8", + "mikey179/vfsStream": "^1.6" + } +} -- cgit