This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 3.95 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": "cascade-public-media/festival.crosscut.com",
"description": "Crosscut Festival public website.",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "github",
"url": "https://github.com/acquia/lightning-dev",
"no-api": true
},
{
"type": "package",
"package": {
"name": "w8tcha/ckeditor_codemirror",
"type": "drupal-library",
"version": "1.17.8",
"dist": {
"type": "zip",
"url": "https://github.com/w8tcha/CKEditor-CodeMirror-Plugin/archive/untagged-f790a6bee2e01b538b13.zip"
}
}
},
{
"type": "package",
"package": {
"name": "noelboss/featherlight",
"type": "drupal-library",
"version": "1.7.13",
"dist": {
"type": "zip",
"url": "https://github.com/noelboss/featherlight/archive/1.7.13.zip"
}
}
}
],
"require": {
"acquia/lightning": "~4.1.7",
"cweagans/composer-patches": "^1.6.0",
"drupal/admin_toolbar": "^2.0",
"drupal/bootstrap_barrio": "^5.1",
"drupal/bootstrap_layouts": "^5.1",
"drupal/ckeditor_codemirror": "^2.1",
"drupal/core-composer-scaffold": "^8.8",
"drupal/core-recommended": "^8.8",
"drupal/devel": "^2.0",
"drupal/google_analytics": "3.x-dev",
"drupal/honeypot": "^2.0",
"drupal/lightbox_campaigns": "^1.2",
"drupal/menu_link_attributes": "^1.0",
"drupal/redirect": "^1.3",
"drupal/salesforce": "^3.1",
"drupal/smart_trim": "^1.2",
"drupal/smtp": "^1.0",
"drupal/webform": "^5.1",
"drush/drush": "^10.3",
"noelboss/featherlight": "^1.7",
"w8tcha/ckeditor_codemirror": "^1.17"
},
"require-dev": {
"drupal/core-dev": "^8.8"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform-check": false,
"platform": {
"php": "7.3"
}
},
"scripts": {
"post-install-cmd": ["find docroot vendor -name '.git' | xargs rm -rf"],
"post-update-cmd": [
"find docroot vendor -name '.git' | xargs rm -rf",
"mkdir -p docroot/libraries/bootstrap",
"cp -R vendor/twbs/bootstrap/dist docroot/libraries/bootstrap"
]
},
"extra": {
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"docroot/themes/custom/{$name}": ["type:drupal-custom-theme"],
"docroot/libraries/{$name}": ["type:drupal-library", "type:bower-asset", "type:npm-asset"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"enable-patching": true,
"patches": {},
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"file-mapping": {
"[web-root]/.htaccess": {
"mode": "skip"
}
},
"locations": {
"web-root": "docroot/"
}
}
}
}