-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
126 lines (126 loc) · 4.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
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": "codementality/drupalite",
"description": "Drupal 10 Skinny Drupal",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal-libraries/flysystem-stream-wrapper": "^2.0",
"drupal/admin_toolbar": "^3.4",
"drupal/core-composer-scaffold": "10.3.x-dev",
"drupal/core-recommended": "10.3.x-dev",
"drupal/pathauto": "^1.12",
"drupal/redirect": "^1.9",
"drupal/s3fs": "^4.0@dev",
"drupal/search_api": "^1.34",
"drupal/search_api_solr": "^4.3",
"drupal/tour_ui": "^2.0",
"drush/drush": "^12",
"elazar/flystream": "^1.0",
"league/flysystem": "^3.27",
"league/flysystem-memory": "^3.0",
"oomphinc/composer-installers-extender": "^2"
},
"require-dev": {
"drupal/core-dev": "10.3.x-dev"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"php-http/discovery": true,
"composer/installers": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true
}
},
"autoload": {
},
"scripts": {
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/.ht.router.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/LICENSE.txt": false,
"[web-root]/README.txt": false,
"[web-root]/example.gitignore": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/web.config": false
},
"initial": {
".htaccess": "web/.htaccess",
"robots.txt": "web/robots.txt",
"sites/default/default.services.yml": "web/sites/default/default.services.yml",
"sites/default/default.settings.php": "web/sites/default/default.settings.php"
},
"omit-defaults": true
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:bower-asset",
"type:drupal-library",
"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"
]
},
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"Issue #3271894: StreamWrapperInterface return type for realpath() is inconsistent with documented use, actual Core implementation, and intention": "https://git.drupalcode.org/project/drupal/-/merge_requests/7402.diff"
}
}
}
}