-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·120 lines (120 loc) · 3.98 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
{
"name": "opengov/opengov-project",
"description": "Project template for Open Government project with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type" : "package",
"package" : {
"name" : "wet-boew/wet-boew",
"version" : "v4.0.79",
"type" : "drupal-library",
"dist" : {
"url" : "https://github.com/wet-boew/wet-boew-cdn/archive/v4.0.79.tar.gz",
"type" : "tar"
},
"source" : {
"url" : "https://github.com/wet-boew/wet-boew-cdn.git",
"type" : "git",
"reference" : "v4.0.79"
}
}
},
{
"type" : "package",
"package" : {
"name" : "wet-boew/theme-gcweb",
"version" : "v15.0.0",
"type" : "drupal-library",
"dist" : {
"url" : "https://github.com/wet-boew/themes-cdn/archive/v15.0.0-gcweb.tar.gz",
"type" : "tar"
},
"source" : {
"url" : "https://github.com/wet-boew/themes-cdn.git",
"type" : "git",
"reference" : "v15.0.0-gcweb"
}
}
}
],
"require": {
"php": ">=8",
"composer/installers": "^1.9.0",
"cweagans/composer-patches": "^1.7.0",
"drupal/core": "^10",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10",
"opengov/og": "dev-master",
"webflo/drupal-finder": "^1.0.0",
"wikimedia/composer-merge-plugin": "2.0.1"
},
"require-dev": {
"drupal/core-dev": "^10"
},
"conflict": {
"drupal/drupal": "*",
"drush/drush": "<8.1.10"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/console-extend-plugin": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true,
"wikimedia/composer-merge-plugin": true,
"zaporylie/composer-drupal-optimizations": true
}
},
"extra": {
"installer-types": [
"bower-asset",
"npm-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/contrib/{$name}": ["type:drupal-drush"]
},
"enable-patching": true,
"composer-exit-on-patch-failure": false,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
},
"locations": {
"web-root": "html/"
}
},
"merge-plugin": {
"include": [
"html/modules/contrib/ckeditor_codemirror/composer.libraries.json"
]
}
}
}