-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 3.11 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
{
"name": "theport/website",
"description": "Website for THE Port Association",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://theport.community",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9",
"drupal/backup_migrate": "^5.0",
"drupal/bootstrap5": "^1.1",
"drupal/captcha": "^1.2",
"drupal/change_author_action": "1.0",
"drupal/config_ignore": "^2.3",
"drupal/core-composer-scaffold": "^9.1",
"drupal/core-project-message": "^9.1",
"drupal/core-recommended": "^9.1",
"drupal/country": "^1.0",
"drupal/csp": "^1.15",
"drupal/ctools": "^3.6",
"drupal/gutenberg": "^2.0",
"drupal/image_widget_crop": "^2.3",
"drupal/matomo": "^1.11",
"drupal/metatag": "^1.15",
"drupal/minifyhtml": "^1.10",
"drupal/node_title_validation": "^1.22",
"drupal/pathauto": "^1.8",
"drupal/redirect": "^1.6",
"drupal/schema_metatag": "^2.2",
"drupal/summary_word_limit": "^2.0",
"drupal/svg_image_field": "^2.1",
"drupal/twig_tweak": "^3.0",
"drupal/views_bulk_edit": "^2.5",
"drupal/webform": "^6.0",
"drupal/webform_spam_words": "^2.0",
"drupal/webp": "^1.0@beta",
"drush/drush": "^10.3",
"wikimedia/composer-merge-plugin": "^2.0"
},
"require-dev": {
"drupal/core-dev": "^9.1",
"drupal/devel": "^4.1",
"drupal/twig_vardumper": "^3.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"process-timeout": 6000,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"wikimedia/composer-merge-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false
}
},
"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/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"merge-plugin": {
"include": [
"web/modules/contrib/webform/composer.libraries.json"
]
}
}
}