-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·160 lines (160 loc) · 5.1 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"commerceguys/addressing": "^2.1.1",
"composer/installers": "^1.7",
"cweagans/composer-patches": "^1.7",
"drupal/address": "^2.0",
"drupal/admin_toolbar": "^3.4",
"drupal/asset_injector": "^2.10",
"drupal/block_styles": "^2.0",
"drupal/blockgroup": "^2.0",
"drupal/bootstrap_barrio": "^5.5",
"drupal/bootstrap_layouts": "^5.1",
"drupal/bootstrap_simple_carousel": "^2.0",
"drupal/coffee": "^1.0@beta",
"drupal/commerce": "^2.37",
"drupal/commerce_reports": "1.x-dev@dev",
"drupal/commerce_stock": "^1.0.0-beta1",
"drupal/commerce_stripe": "^1.0@RC",
"drupal/config_ignore": "^3.2",
"drupal/config_split": "^1.9",
"drupal/core-composer-scaffold": "10.2.2",
"drupal/core-project-message": "10.2.2",
"drupal/core-recommended": "10.3.10",
"drupal/crop": "^2.3",
"drupal/ctools": "^3.13",
"drupal/daterange_compact": "^2.0",
"drupal/devel_entity_updates": "^4.1",
"drupal/ds": "^3.1",
"drupal/embed": "^1.0",
"drupal/entity": "^1.0",
"drupal/entity_browser": "^2.0",
"drupal/entity_embed": "^1.0@beta",
"drupal/field_formatter_class": "^1.1",
"drupal/field_group": "^3.0",
"drupal/filefield_paths": "^1.0@beta",
"drupal/google_analytics": "^4.0",
"drupal/honeypot": "^2.1",
"drupal/hreflang": "^1.9",
"drupal/image_widget_crop": "^2.2",
"drupal/inline_entity_form": "^1.0@RC",
"drupal/jquery_ui_autocomplete": "^2.0",
"drupal/menu_link_attributes": "^1.0",
"drupal/module_filter": "5.0.3",
"drupal/pathauto": "^1.10",
"drupal/profile": "^1.0",
"drupal/recreate_block_content": "^3.0",
"drupal/redirect": "^1.8",
"drupal/schema_metatag": "^2.4",
"drupal/seo_checklist": "^5.1",
"drupal/stage_file_proxy": "^3.0@alpha",
"drupal/structure_sync": "^2.0",
"drupal/styles_api": "^1.0",
"drupal/symfony_mailer": "^1.1@beta",
"drupal/upgrade_status": "^4.0",
"drupal/views_bootstrap": "^5.4",
"drupal/views_slideshow": "^5.0",
"drupal/views_taxonomy_term_name_depth": "^7.0",
"drupal/xmlsitemap": "^1.4",
"drush/drush": "^12",
"symfony/validator": "6.4.7",
"symfony/yaml": "^6.2",
"twig/twig": "^3.4.3",
"typo3/phar-stream-wrapper": "3.1.7",
"vlucas/phpdotenv": "^2.4",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"discard-changes": true,
"allow-plugins": {
"composer/installers": true,
"drupal/console-extend-plugin": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": [
"load.environment.php"
]
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"patchLevel": {
"drupal/core": "-p2"
},
"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/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
},
"extra": {
"enable-patching": true,
"patches": {}
}
}
}