-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·127 lines (127 loc) · 4.27 KB
/
composer.json
File metadata and controls
executable file
·127 lines (127 loc) · 4.27 KB
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
{
"name": "opengov/og",
"description": "Project template for Drupal Open Government project with composer",
"type": "drupal-profile",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type" : "package",
"package" : {
"name" : "wet-boew/wet-boew",
"version" : "v4.0.89",
"type" : "drupal-library",
"dist" : {
"url" : "https://github.com/wet-boew/wet-boew-cdn/archive/v4.0.89.tar.gz",
"type" : "tar"
},
"source" : {
"url" : "https://github.com/wet-boew/wet-boew-cdn.git",
"type" : "git",
"reference" : "v4.0.89"
}
}
},
{
"type" : "package",
"package" : {
"name" : "wet-boew/theme-gcweb",
"version" : "v17.1.1",
"type" : "drupal-library",
"dist" : {
"url" : "https://github.com/wet-boew/themes-cdn/archive/v17.1.1-gcweb.tar.gz",
"type" : "tar"
},
"source" : {
"url" : "https://github.com/wet-boew/themes-cdn.git",
"type" : "git",
"reference" : "v17.1.1-gcweb"
}
}
}
],
"require": {
"php": ">=8",
"ext-json": "*",
"composer/installers": "^2.3",
"cweagans/composer-patches": "^1.7.0",
"drupal/core-composer-scaffold": "^11.2",
"drupal/admin_toolbar": "3.6.2",
"drupal/advanced_email_validation": "2.0.2",
"drupal/autologout": "2.0.1",
"drupal/bootstrap_layouts": "5.5.0",
"drupal/core": "11.2.8",
"drupal/csv_serialization": "4.0.1",
"drupal/facets": "3.0.2",
"drupal/fontawesome": "3.0.0",
"drupal/google_analytics": "4.0.3",
"drupal/google_tag": "2.0.9",
"drupal/honeypot": "2.2.2",
"drupal/menu_breadcrumb": "2.0.1",
"drupal/metatag": "2.2.0",
"drupal/password_policy": "4.0.3",
"drupal/pathauto": "1.13.0",
"drupal/recaptcha_v3": "2.0.4",
"drupal/redirect": "1.12.0",
"drupal/redis": "1.10.0",
"drupal/search_api": "1.39.0",
"drupal/search_api_solr": "4.3.10",
"drupal/simple_sitemap": "4.2.2",
"drupal/token_filter": "2.2.1",
"drupal/views_bootstrap": "5.4.1",
"drupal/webform": "6.3.0-beta5",
"drush/drush": "13.5.0",
"fortawesome/font-awesome": "7.0.1",
"oomphinc/composer-installers-extender": "^2.0.0",
"opengov/gcweb": "dev-master",
"wikimedia/composer-merge-plugin": "^2.0.0"
},
"require-dev": {
"drupal/core-dev": "^11.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"enable-patching": true,
"patches": {
"drupal/core": {
"Dynamically provide action plugins for every moderation state change":"https://www.drupal.org/files/issues/2023-03-10/2797583-218.patch"
}
},
"installer-types": [
"npm-asset",
"bower-asset"
],
"installer-paths": {
"html/core": [ "type:drupal-core" ],
"html/libraries/{$name}": [
"type:drupal-library",
"type:npm-asset",
"type:bower-asset"
],
"html/modules/contrib/{$name}": [ "type:drupal-module" ],
"html/profiles/{$name}": [ "type:drupal-profile" ],
"html/themes/custom/{$name}": [ "opengov/gcweb" ],
"html/themes/contrib/{$name}": [ "type:drupal-theme" ],
"drush/Commands/{$name}": [ "type:drupal-drush" ]
},
"drupal-scaffold": {
"locations": {
"web-root": "html/"
}
}
}
}