-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
68 lines (68 loc) · 2.09 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
{
"name": "druidfi/renovate-test",
"type": "project",
"description": "Test on how PHP is handled on Renovate",
"homepage": "https://github.com/druidfi/renovate-test",
"license": "MIT",
"authors": [
{
"name": "Druid.fi",
"email": "info@druid.fi"
}
],
"require": {
"php": "^8.1",
"composer-runtime-api": "^2",
"abraham/twitteroauth": "^4.0",
"composer/installers": "^2.3.0",
"drupal/core-composer-scaffold": "11.0.5",
"drupal/core-recommended": "11.0.5"
},
"require-dev": {
"drupal/core-dev-pinned": "11.0.5"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./public"
},
"file-mapping": {
"[project-root]/.editorconfig": false,
"[web-root]/sites/default/default.services.yml": false,
"[web-root]/sites/default/default.settings.php": false
}
},
"installer-paths": {
"public/core": ["type:drupal-core"],
"public/modules/contrib/{$name}": ["type:drupal-module"],
"public/modules/custom/{$name}": ["type:drupal-module-custom"],
"public/profiles/{$name}": ["type:drupal-profile"],
"public/themes/contrib/{$name}": ["type:drupal-theme"],
"public/themes/custom/{$name}": ["type:drupal-theme-custom"],
"drush/{$name}": ["type:drupal-drush"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}