-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
126 lines (126 loc) · 4.46 KB
/
Copy pathcomposer.json
File metadata and controls
126 lines (126 loc) · 4.46 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "app/project",
"description": "Project for blog.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://niklan.net",
"authors": [
{
"name": "Nikita Malyshev (Niklan)",
"homepage": "https://niklan.net",
"email": "i@niklan.net",
"role": "Developer"
}
],
"repositories": [
{
"type": "path",
"url": "app/**/*"
},
{
"type": "path",
"url": "assets/vendor/*"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=8.4",
"app/main": "^1.0@dev",
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.6",
"drupal/core-composer-scaffold": "~11.3.0",
"drupal/core-recommended": "~11.3.0",
"drush/drush": "^13",
"niklan/composer-directories": "^1.0@alpha"
},
"require-dev": {
"app/dev": "^1.0@dev",
"chi-teck/drupal-coder-extension": "^2.0@alpha",
"drupal/core-dev": "~11.3.0",
"friendsofphp/php-cs-fixer": "^3.94",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/prophecy-phpunit": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"niklan/composer-directories": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
}
},
"extra": {
"ensure-directories": [
"var/files/private",
"var/files/private/translations",
"var/files/public",
"var/files/temporary",
"var/log"
],
"symlinks": {
"var/files/public": "web/sites/default/files"
},
"drupal-scaffold": {
"allowed-packages": [
"app/project"
],
"gitignore": false,
"locations": {
"web-root": "./web",
"libraries-root": "./web/libraries"
},
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false,
"[project-root]/local/settings.php": {
"mode": "replace",
"path": "assets/scaffold/local.settings.php",
"overwrite": false
},
"[project-root]/recipes/README.txt": false,
"[web-root]/llms.txt": "assets/scaffold/llms.txt",
"[web-root]/robots.txt": {
"append": "assets/scaffold/robots-txt-additions.txt"
},
"[web-root]/sites/default/default.settings.php": "web/core/assets/scaffold/files/default.settings.php",
"[web-root]/sites/default/settings.php": "assets/scaffold/settings.php",
"[web-root]/sites/development.services.yml": "assets/scaffold/development.services.yml",
"[web-root]/sites/monolog.services.yml": "assets/scaffold/monolog.services.yml"
}
},
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"SDC incorrectly throws an exception about embedded slots (dgo.to/3446933)": "./assets/patch/core-3446933-mr-8234.patch"
}
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"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"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"]
}
}
}