-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 3.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "drevops/renovate-drupal",
"description": "This and accompanying lock files have deliberately outdated dependencies from different namespaces to test Renovate bot rules.",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/coffee": "^1",
"drupal/core-composer-scaffold": "^9",
"drupal/core-project-message": "^9",
"drupal/core-recommended": "^9",
"drush/drush": "^10",
"oomphinc/composer-installers-extender": "^2.0",
"vlucas/phpdotenv": "^5.1",
"webflo/drupal-finder": "^1.2",
"drevops/renovate-example-source": "^1",
"drevops/renovate-example-source2": "^1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"drupal/core-dev": "^9",
"drupal/drupal-extension": "^4",
"drevops/renovate-example-source3": "^1"
},
"conflict": {
"drupal/drupal": "*"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"composer/installers": true,
"zaporylie/composer-drupal-optimizations": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./web"
},
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false,
"[web-root]/.htaccess": false,
"[web-root]/.ht.router.php": false,
"[web-root]/example.gitignore": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.txt": false,
"[web-root]/sites/example.settings.local.php": false,
"[web-root]/sites/example.sites.php": false,
"[web-root]/web.config": false
}
},
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}