-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 1009 Bytes
/
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
{
"name": "sdubois/amezmo-drupal-integrations",
"description": "Add this project to any Drupal distribution based on drupal/core-composer-scaffold to enable it for use on Amezmo.",
"type": "project",
"license": "MIT",
"require":{
"vlucas/phpdotenv": "^5.2"
},
"conflict": {
"drupal/core": "<9"
},
"autoload": {
"files": [
"load.environment.php"
]
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"load.environment.php": "assets/load.environment.php",
".amezmo/after.pull": "assets/.amezmo/after.pull",
"[web-root]/sites/default/settings.amezmo.php": {
"mode": "replace",
"path": "assets/settings.amezmo.php",
"overwrite": false
},
"[web-root]/sites/default/settings.php": {
"mode": "replace",
"path": "assets/initial.settings.php",
"overwrite": false
}
}
}
}
}