-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
124 lines (124 loc) · 3.64 KB
/
composer.json
File metadata and controls
124 lines (124 loc) · 3.64 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
{
"name": "saltednut/roll",
"description": "Project template for Advanced Drupal 9 projects",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.dianawynn.com/roll",
"support": {
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "package",
"package": {
"name": "library-enyo/dropzone",
"version": "4.3.0",
"type": "drupal-library",
"source": {
"url": "https://github.com/enyo/dropzone",
"type": "git",
"reference": "v4.3.0"
}
}
},
{
"type": "package",
"package": {
"name": "jquery/cycle",
"version": "3.0.3",
"type": "drupal-library",
"extra": {
"installer-name": "jquery.cycle"
},
"dist": {
"url": "https://github.com/malsup/cycle/archive/refs/tags/3.0.3.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "jquery/hoverintent",
"version": "1.9.0",
"type": "drupal-library",
"extra": {
"installer-name": "jquery.hoverIntent"
},
"dist": {
"url": "https://github.com/briancherne/jquery-hoverIntent/archive/refs/tags/v1.9.0.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "json/json2",
"version": "2.0",
"type": "drupal-library",
"extra": {
"installer-name": "json2"
},
"dist": {
"url": "https://github.com/douglascrockford/JSON-js/archive/refs/heads/master.zip",
"type": "zip"
}
}
}
],
"require": {
"acquia/blt": "^12.0",
"saltednut/roll_drupal": "^1.0.0-beta5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
}
},
"installer-types": [
"npm-asset",
"bower-asset"
],
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/roll": ["saltednut/roll_drupal"],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/libraries/slick": ["bower-asset/slick-carousel"],
"docroot/libraries/masonry": ["bower-asset/masonry-layout"],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
]
}
}
}