-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.58 KB
/
composer.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "lammensj/resilient",
"description": "Install Drupal with some defaults, based on personal experiences.",
"type": "drupal-profile",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/admin_toolbar": "^1.24",
"drupal/adminimal_admin_toolbar": "^1.7",
"drupal/adminimal_theme": "^1.3",
"drupal/block_field": "^1.0@alpha",
"drupal/bootstrap_paragraphs": "^2.0@beta",
"drupal/config_installer": "^1.8",
"drupal/config_split": "^1.3",
"drupal/config_update": "^1.5",
"drupal/console": "^1.8",
"drupal/contact_storage": "^1.0@beta",
"drupal/core": "~8.5",
"drupal/field_group": "^3.0@beta",
"drupal/gtm": "^1.1",
"drupal/honeypot": "^1.27",
"drupal/imce": "^1.6",
"drupal/link_css": "1.x-dev",
"drupal/linkit": "^4.3",
"drupal/menu_admin_per_menu": "^1.0",
"drupal/metatag": "^1.5",
"drupal/override_node_options": "^2.4",
"drupal/paragraphs_browser": "^1.0@alpha",
"drupal/pathauto": "^1.2",
"drupal/pathologic": "1.x@alpha",
"drupal/redirect": "^1.2",
"drupal/simple_sitemap": "^2.12",
"drupal/swiftmailer_force_html": "^1.0@beta",
"drupal/system_tags": "^1.1",
"drupal/taxonomy_access_fix": "^2.6",
"drush/drush": "^9.0.0",
"webflo/drupal-finder": "^1.1",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"drupal/devel": "^1.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
},
"patchLevel": {
"drupal/core": "-p2"
}
}
}