This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·94 lines (94 loc) · 2.95 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
{
"name": "dh-webteam/dh-common",
"description": "Common packages/modules used for most Dartmouth-Hitchcock Drupal sites.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.dartmouth-hitchcock.org/",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"drupal/address": "^1.9",
"drupal/admin_toolbar": "^3.0",
"drupal/config_filter": "^1.8",
"drupal/config_ignore": "^2.3",
"drupal/config_split": "^1.7",
"drupal/core-composer-scaffold": "9.2.*",
"drupal/core-project-message": "9.2.*",
"drupal/core-recommended": "9.2.6",
"drupal/core-vendor-hardening": "9.2.*",
"drupal/ctools": "^3.7",
"drupal/devel": "^4.1",
"drupal/embed": "^1.4",
"drupal/entity_browser": "^2.6",
"drupal/entity_embed": "^1.2",
"drupal/entity_reference_revisions": "^1.6",
"drupal/entity_usage": "^2.0@beta",
"drupal/entityqueue": "^1.2",
"drupal/inline_responsive_images": "^2.1",
"drupal/linkit": "^5.0@beta",
"drupal/media_entity_download": "^2.1",
"drupal/menu_breadcrumb": "^1.16",
"drupal/metatag": "^1.16",
"drupal/migrate_plus": "^5.1",
"drupal/migrate_tools": "^5.0",
"drupal/pantheon_advanced_page_cache": "^1.2",
"drupal/paragraphs": "^1.9",
"drupal/pathauto": "^1.6",
"drupal/redirect": "^1.5",
"drupal/redis": "^1.1",
"drupal/rename_admin_paths": "^2.0",
"drupal/schema_metatag": "^2.2",
"drupal/simple_sitemap": "^3.10",
"drupal/stage_file_proxy": "^1.1",
"drupal/svg_image": "^1.10",
"drupal/token": "^1.5",
"drupal/video_embed_field": "^2.2",
"drush/drush": "^10.6",
"vlucas/phpdotenv": "^5.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"drupal/core-vendor-hardening": true
}
},
"autoload": {
"classmap": [
"web/private/scripts/composer/ScriptHandler.php"
]
},
"autoload-dev": {
"files": [
"load.environment.php"
]
},
"patchLevel": {
"drupal/core": "-p2"
},
"extra": {
"composer-exit-on-patch-failure": true
},
"composer-version": "^2.10"
}