This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.44 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
79
{
"name": "au-vic-gov-dpc/user-management",
"type": "drupal-module",
"description": "This module allows you to group users based on their available e-mail addresses and add multiple e-mail addresses to users",
"license": "BSD-3-Clause",
"homepage": "https://github.com/ackama/dpc-user-management-module",
"support": {
"issues": "https://github.com/ackama/dpc-user-management-module/issues",
"source": "https://github.com/ackama/dpc-user-management-module.git"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"php": "^7.3",
"drewm/mailchimp-api": "^2.5",
"drupal/group": "^1.4"
},
"require-dev": {
"drupal/admin_toolbar": "^3.0",
"drupal/console": "^1.9",
"drupal/core-composer-scaffold": "^8.9.18",
"drupal/core-dev": "^8.9.18",
"drupal/core-recommended": "^8.9.18",
"drupal/devel": "^4.1",
"drupal/mailsystem": "^4.3",
"drupal/phpmailer_smtp": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"overwrite": true,
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false,
"[web-root]/sites/default/settings.local.php": false
},
"locations": {
"web-root": "./html/"
}
},
"installer-paths": {
"./html/core": [
"type:drupal-core"
],
"./html/libraries/{$name}": [
"type:drupal-library"
],
"./html/modules/contrib/{$name}": [
"type:drupal-module"
],
"./html/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"./html/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"./html/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"./html/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}