summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 190fc017db0c891f11e59793de33c9e7299898f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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"
    }
}