forked from CuBoulder/pantheon-upstream-tiamat-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
131 lines (131 loc) · 5.24 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
{
"name": "cu-boulder/tiamat_developer_sandbox",
"description": "Install Tiamat with Composer on Pantheon.",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "path",
"url": "upstream-configuration/locked"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"composer/installers": "^2.1",
"cweagans/composer-patches": "^1.7",
"drush/drush": "^12",
"oomphinc/composer-installers-extender": "^2.0",
"pantheon-upstreams/upstream-configuration": "dev-master"
},
"require-dev": {
"drupal/core-dev": "~10.2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./web"
},
"allowed-packages": ["pantheon-systems/drupal-integrations"],
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/pantheon.upstream.yml": false,
"[project-root]/.gitattributes": false
}
},
"patches": {
"drupal/core": {
"Reusable Patch Beta": "https://www.drupal.org/files/issues/2024-01-23/add_reusable_option_to_inline_block_creation-2999491-141.patch"
}
},
"patchLevel": {
"drupal/core": "-p2"
},
"installer-types": [
"npm-asset",
"bower-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/jquery.inputmask": ["npm-asset/inputmask"],
"web/libraries/jquery.intl-tel-input": ["npm-asset/intl-tel-input"],
"web/libraries/jquery.select2": ["npm-asset/select2"],
"web/libraries/jquery.textcounter": ["npm-asset/jquery-text-counter"],
"web/libraries/jquery.timepicker": ["npm-asset/timepicker"],
"web/libraries/popperjs": ["npm-asset/popperjs--core"],
"web/libraries/signature_pad": ["bower-asset/signature-pad"],
"web/libraries/tabby": ["npm-asset/tabbyjs"],
"web/libraries/tippyjs": ["npm-asset/tippy.js"],
"web/libraries/ckeditor5-anchor-drupal": ["npm-asset/northernco--ckeditor5-anchor-drupal"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:npm-asset",
"type:bower-asset"
],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"web/private/scripts/quicksilver/{$name}/": ["type:quicksilver-script"]
},
"merge-plugin": {
"include": ["composer.libraries.json"]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"simplesamlphp/composer-module-installer": true,
"wikimedia/composer-merge-plugin": true,
"phpstan/extension-installer": true,
"drupal/core-project-message": true,
"php-http/discovery": true,
"pantheon-systems/upstream-management": true,
"oomphinc/composer-installers-extender": true,
"simplesamlphp/composer-xmlprovider-installer": true,
"tbachert/spi": true
}
},
"scripts": {
"post-update-cmd": [
"rm -rf vendor/simplesamlphp/simplesamlphp/metadata",
"rm -rf vendor/simplesamlphp/simplesamlphp/config",
"rm -rf vendor/simplesamlphp/simplesamlphp/cert",
"ln -sf ../../../private/metadata vendor/simplesamlphp/simplesamlphp/metadata",
"ln -sf ../../../private/config vendor/simplesamlphp/simplesamlphp/config",
"ln -sf ../../../private/cert vendor/simplesamlphp/simplesamlphp/cert"
],
"post-install-cmd": [
"rm -rf vendor/simplesamlphp/simplesamlphp/metadata",
"rm -rf vendor/simplesamlphp/simplesamlphp/config",
"rm -rf vendor/simplesamlphp/simplesamlphp/cert",
"ln -sf ../../../private/metadata vendor/simplesamlphp/simplesamlphp/metadata",
"ln -sf ../../../private/config vendor/simplesamlphp/simplesamlphp/config",
"ln -sf ../../../private/cert vendor/simplesamlphp/simplesamlphp/cert"
]
}
}