diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
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" + } +} |