-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2.07 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
{
"name": "mattsqd/drupal-env-lando",
"description": "Use Lando with the Drupal Env project.",
"minimum-stability": "stable",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "mattsqd",
"email": "mattsqd@users.noreply.github.com"
}
],
"autoload": {
"psr-4": {
"DrupalEnvLando\\": "./src/"
}
},
"type": "robo-tasks",
"require": {
"cocur/slugify": "^4.0.0",
"consolidation/robo": "^3.0.9 || ^4.0.1",
"drupal/core-composer-scaffold": "^10.0",
"mattsqd/drupal-env": "dev-main",
"php": ">=8.0.17"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0.17"
},
"allow-plugins": {
"drupal/core-composer-scaffold": false
}
},
"extra": {
"drupal-scaffold": {
"gitignore": false,
"file-mapping": {
"[web-root]/sites/default/settings.lando.php": {
"mode": "replace",
"path": "scaffolding/drupal_config/settings.lando.php",
"overwrite": true
},
"[project-root]/.lando.dist.yml": {
"mode": "replace",
"path": "scaffolding/env_config/lando.dist.yml",
"overwrite": true
},
"[project-root]/lando-config/php.ini": {
"mode": "replace",
"path": "scaffolding/php_config/php.ini",
"overwrite": true
},
"[project-root]/RoboEnv/Robo/Plugin/Commands/LandoCommands.php": {
"mode": "replace",
"path": "scaffolding/Robo/LandoCommands.php",
"overwrite": true
},
"[project-root]/.gitignore": {
"append": "scaffolding/gitignore-additions.txt",
"force-append": true
}
}
}
}
}