To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / composer.json

History | View | Annotate | Download (2.2 KB)

1 0:4c8ae668cc8c Chris
{
2
    "name": "drupal/drupal",
3
    "description": "Drupal is an open source content management platform powering millions of websites and applications.",
4
    "type": "project",
5
    "license": "GPL-2.0+",
6
    "require": {
7
        "composer/installers": "^1.0.24",
8
        "wikimedia/composer-merge-plugin": "^1.4",
9 11:bfffd8d7479a Chris
        "drush/drush": "^8.1",
10 18:af1871eacc83 Chris
        "drupal/core": "^8.7.1"
11 0:4c8ae668cc8c Chris
    },
12
    "minimum-stability": "dev",
13
    "prefer-stable": true,
14
    "config": {
15
        "preferred-install": "dist",
16
        "autoloader-suffix": "Drupal8"
17
    },
18
    "extra": {
19
        "_readme": [
20
            "By default Drupal loads the autoloader from ./vendor/autoload.php.",
21
            "To change the autoloader you can edit ./autoload.php.",
22
            "This file specifies the packages.drupal.org repository.",
23
            "You can read more about this composer repository at:",
24
            "https://www.drupal.org/node/2718229"
25
        ],
26
        "merge-plugin": {
27
            "include": [
28
                "core/composer.json"
29
            ],
30
            "recurse": false,
31
            "replace": false,
32
            "merge-extra": false
33
        },
34
        "installer-paths": {
35
            "core": ["type:drupal-core"],
36
            "modules/contrib/{$name}": ["type:drupal-module"],
37
            "profiles/contrib/{$name}": ["type:drupal-profile"],
38
            "themes/contrib/{$name}": ["type:drupal-theme"],
39
            "drush/contrib/{$name}": ["type:drupal-drush"],
40
            "modules/custom/{$name}": ["type:drupal-custom-module"],
41
            "themes/custom/{$name}": ["type:drupal-custom-theme"]
42
        }
43
    },
44
    "autoload": {
45
        "psr-4": {
46
            "Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
47
        }
48
    },
49
    "scripts": {
50
        "pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
51
        "post-autoload-dump": [
52
          "Drupal\\Core\\Composer\\Composer::ensureHtaccess"
53
        ],
54
        "post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
55
        "post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
56
    },
57
    "repositories": [
58
        {
59
            "type": "composer",
60
            "url": "https://packages.drupal.org/8"
61
        }
62
    ]
63
}