-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
123 lines (123 loc) · 4.06 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
{
"name": "thinktandem/minimis",
"description": "Thinktandem's Minimis Distribution",
"type": "drupal-profile",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "John Ouellet",
"email": "[email protected]",
"homepage": "https://thinktandem.io",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "git",
"url": "https://github.com/thinktandem/bootstrap"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "^1.8",
"cweagans/composer-patches": "^1.6",
"drupal/core-composer-scaffold": "~9.3",
"drupal/core-recommended": "~9.3",
"drupal/core-vendor-hardening": "~9.3",
"drush/drush": "^11.0",
"drupal/adminimal_theme": "^1.6",
"drupal/adminimal_admin_toolbar": "^1.11",
"drupal/admin_toolbar": "^3.0",
"drupal/bootstrap_barrio": "5.1.*",
"drupal/bootstrap_library": "1.x-dev@dev",
"drupal/config_readonly": "^1.0",
"drupal/config_split": "^2.0",
"drupal/ctools": "^3.0",
"drupal/linkit": "^5.0",
"drupal/metatag": "^1.16",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.0",
"drupal/redirect": "^1.0",
"drupal/schema_metatag": "^2.2",
"drupal/token": "^1.0",
"drupal/simple_sitemap": "^3.0",
"drupal/token_filter": "^1.1",
"drupal/layout_builder_restrictions": "^2.9",
"drupal/google_analytics": "^3.0",
"drupal/inline_entity_form": "^1.0",
"drupal/entity_browser": "^2.0",
"drupal/media_entity_browser": "^2.0",
"drupal/embed": "^1.0",
"drupal/big_pipe_sessionless": "^2.0",
"drupal/lazy": "^3.0",
"drupal/config_rewrite": "^1.4",
"drupal/entity_embed": "^1.0",
"drupal/imageapi_optimize": "^4.0",
"drupal/imageapi_optimize_resmushit": "^2.0",
"thinktandem/bootstrap": "dev-master",
"zaporylie/composer-drupal-optimizations": "^1.0",
"oomphinc/composer-installers-extender": "^2.0",
"bower-asset/lazysizes": "^5.2",
"webmozart/path-util": "^2.0"
},
"require-dev": {
"drupal/core-dev": "~9.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.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": {
"installer-types": ["bower-asset", "npm-asset"],
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"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"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches-file": "composer.patches.json"
}
}