-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
139 lines (139 loc) · 4.27 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
{
"name": "drupal/simplytest",
"description": "Launch and management of simplytest.me service.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/simplytest",
"support": {
"issues": "https://www.drupal.org/project/issues/simplytest",
"source": "https://git.drupalcode.org/project/simplytest"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"authors": [
{
"name": "Adam Bergstein (nerdstein)",
"email": "nerdstein@gmail.com",
"homepage": "https://www.drupal.org/u/nerdstein",
"role": "Maintainer"
},
{
"name": "Contributors",
"homepage": "https://www.drupal.org/node/1786208/committers",
"role": "Contributors"
}
],
"require": {
"php": "^8.2",
"amazeeio/drupal_integrations": "^0.5.0",
"composer/installers": "^2.2",
"composer/semver": "^3.0",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.4",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10",
"drupal/fastly": "^4.0",
"drupal/http_cache_control": "^2.0",
"drupal/lagoon_logs": "^3.0",
"drupal/purge": "^3.0",
"drupal/queue_unique": "^3.0",
"drupal/tugboat": "^1.0@alpha",
"drush/drush": "^13"
},
"require-dev": {
"drupal/core-dev": "^10",
"phpspec/prophecy-phpunit": "^2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"tests": "php vendor/bin/phpunit web/modules/custom",
"compile": "npm run build"
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false
},
"allowed-packages": [
"amazeeio/drupal_integrations"
]
},
"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"
],
"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"
]
},
"violinist": {
"one_pull_request_per_package": 1,
"run_scripts": 0,
"bundled_packages": {
"drupal/core-recommended": [
"drupal/core-composer-scaffold",
"drupal/core-project-message",
"drupal/core-dev-pinned",
"drupal/core-dev",
"drupal/core"
]
},
"blacklist": [
"drupal/core-composer-scaffold",
"drupal/core-project-message",
"drupal/core-dev-pinned",
"drupal/core-dev",
"drupal/core"
]
}
}
}