summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-03-17 15:03:46 +0100
committerRemi Collet <remi@remirepo.net>2020-03-17 15:03:46 +0100
commit016ff095f2c533f24ffde7d6b4b62a6069ce24bb (patch)
tree03866336406b9ed2ba16bf94eb6818f9379c64b3 /composer.json
import from Fedora
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json29
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"
+ }
+}