-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
151 lines (151 loc) · 5 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
{
"name": "writecrow/corpus_backend",
"description": "Content management backend for Crow, the Corpus and Repository of Writing",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mark Fullmer",
"email": "[email protected]",
"homepage": "https://markfullmer.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1 || ^2",
"cweagans/composer-patches": "^1.7",
"drupal/better_exposed_filters": "^6",
"drupal/captcha": "^1 || ^2",
"drupal/config_filter": "^2",
"drupal/config_update": "^2",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10.2",
"drupal/facets": "^2",
"drupal/honeypot": "^2",
"drupal/login_emailusername": "^2",
"drupal/mailsystem": "^4",
"drupal/mimemail": "^1.0@alpha",
"drupal/monolog": "^2.2",
"drupal/phpmailer_smtp": "^2.1",
"drupal/rabbit_hole": "^1",
"drupal/recaptcha": "^3",
"drupal/restui": "^1",
"drupal/role_delegation": "^1",
"drupal/search_api": "^1",
"drupal/simple_oauth": "^5",
"drupal/token": "^1",
"drupal/userprotect": "^1",
"drupal/views_data_export": "^1",
"drush/drush": "^12",
"writecrow/basecamp_api": "^1.0",
"writecrow/country_code_converter": "dev-main",
"writecrow/highlighter": "dev-main",
"writecrow/lorem_gutenberg": "^1.1",
"writecrow/rest_feedback_endpoint": "dev-main",
"writecrow/tag_converter": "~1.0"
},
"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"
]
},
"config": {
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"composer/installers": true
},
"platform-check": false,
"platform": {
"php": "8.2.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"public_html/core": [
"type:drupal-core"
],
"public_html/modules/contrib/{$name}": [
"type:drupal-module"
],
"public_html/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"public_html/themes/contrib/{$name}": [
"type:drupal-theme"
],
"public_html/drush/contrib/{$name}": [
"type:drupal-drush"
],
"public_html/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"public_html/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"public_html/libraries/{$name}": [
"type:drupal-library"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "public_html/"
},
"allowed-packages": [
"drupal/core"
],
"file-mapping": {
"[web-root]/web.config": false,
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false,
"[web-root]/robots.txt": false,
"[web-root]/.htaccess": false,
"[web-root]/.csslintrc": false,
"[web-root]/.editorconfig": false,
"[web-root]/.eslintignore": false,
"[web-root]/example.gitignore": false,
"[web-root]/.eslintrc.json": false,
"[web-root]/.ht.router.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/sites/README.txt": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/sites/default/default.services.yml": false,
"[web-root]/sites/default/default.settings.php": false
}
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drush/drush": {
"Siteground PHP8.1 tweak": "patches/siteground-drush-php81.patch"
}
}
}
}