-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.6 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
{
"name": "opengov/gcweb",
"description": "Theme implementation using WET-BOEW",
"type": "drupal-theme",
"license": "GPL-2.0-or-later",
"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": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7.0",
"drupal/bootstrap": "3.29.0",
"drupal/core": "^8 || ^9 || ^10",
"wet-boew/theme-gcweb": "13.3.0",
"wet-boew/wet-boew": "v4.0.63"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"composer-exit-on-patch-failure": false,
"patchLevel": {
"drupal/core": "-p2"
},
"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/themes/contrib/{$name}": [
"type:drupal-theme"
]
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
}
}
}