-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
148 lines (148 loc) · 4.41 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
{
"name": "opigno/opigno-composer",
"description": "Opigno LMS",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"enyo/dropzone": {
"type": "package",
"package": {
"name": "enyo/dropzone",
"version": "v5.5.0",
"type": "drupal-library",
"dist": {
"url": "https://github.com/dropzone/dropzone/archive/refs/tags/v5.5.0.zip",
"type": "zip"
}
}
},
"mozilla/pdf.js": {
"type": "package",
"package": {
"name": "mozilla/pdf.js",
"version": "v2.4.456",
"type": "drupal-library",
"dist": {
"url": "https://github.com/mozilla/pdf.js/releases/download/v2.4.456/pdfjs-2.4.456-es5-dist.zip",
"type": "zip"
}
}
},
"kenwheeler/slick": {
"type": "package",
"package": {
"name": "kenwheeler/slick",
"version": "1.8.1",
"type": "drupal-library",
"dist": {
"url": "https://github.com/kenwheeler/slick/archive/v1.8.1.zip",
"type": "zip"
}
}
},
"furf/jquery-ui-touch-punch": {
"type": "package",
"package": {
"name": "furf/jquery-ui-touch-punch",
"version": "master",
"type": "drupal-library",
"dist": {
"url": "https://github.com/furf/jquery-ui-touch-punch/archive/refs/heads/master.zip",
"type": "zip"
}
}
},
"almende/vis": {
"type": "package",
"package": {
"name": "almende/vis",
"version": "v4.21.0",
"type": "drupal-library",
"dist": {
"url": "https://github.com/almende/vis/archive/refs/tags/v4.21.0.zip",
"type": "zip"
}
}
}
},
"require": {
"wikimedia/composer-merge-plugin": "2.0",
"composer/installers": "*",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "~9.5.0",
"opigno/opigno_lms": "~3.1.0",
"drupal/admin_toolbar": "^3.4",
"drupal/smtp": "^1.2"
},
"require-dev": {
"drush/drush": "^10 || ^11",
"drupal/console": "~1.0"
},
"replace": {
"h5p/h5p-core": "*",
"h5p/h5p-editor": "*"
},
"config": {
"sort-packages": false,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"wikimedia/composer-merge-plugin": true,
"drupal/console-extend-plugin": true,
"topfloor/composer-cleanup-vcs-dirs": true
}
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/libraries/ckeditor": [
"type:drupal-library-ckeditor"
],
"drush/Commands/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"enable-patching": true,
"composer-exit-on-patch-failure": false,
"patchLevel": {
"drupal/core": "-p2"
}
}
}