-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
136 lines (136 loc) · 4.25 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
{
"name": "city-of-helsinki/drupal-kaupunkitieto",
"description": "Drupal instance for kaupunkitieto.hel.fi",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/City-of-Helsinki/drupal-kaupunkitieto",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.6.7",
"drupal/api_tools": "^1.0",
"drupal/asset_injector": "^2.8",
"drupal/core": "^10.3",
"drupal/core-composer-scaffold": "^10.3",
"drupal/facets": "^2.0",
"drupal/file_delete": "^2.0",
"drupal/hdbt": "^6.0",
"drupal/hdbt_admin": "^3.0",
"drupal/helfi_azure_fs": "^2.0",
"drupal/helfi_drupal_tools": "dev-main",
"drupal/helfi_platform_config": "^4.0",
"drupal/helfi_tpr": "^2.0",
"drupal/helfi_tunnistamo": "^3.0",
"drupal/purge": "^3.6",
"drupal/redis": "^1.5",
"drupal/varnish_purge": "^2.2",
"drush/drush": "^12"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"drupal/coder": "^8.3",
"drupal/core-dev": "^10.3",
"jangregor/phpstan-prophecy": "^1.0",
"mglaman/phpstan-drupal": "^1.2",
"phpspec/prophecy-phpunit": "^2",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^9.5",
"weitzman/drupal-test-traits": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"php-http/discovery": false,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report",
"ignore": ["GHSA-mg8j-w93w-xjgc"]
}
},
"extra": {
"composer-exit-on-patch-failure": false,
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./public"
},
"file-mapping": {
"[project-root]/.editorconfig": false
}
},
"enable-patching": true,
"installer-paths": {
"public/core": [
"type:drupal-core"
],
"public/libraries/{$name}": [
"type:drupal-library"
],
"public/modules/contrib/{$name}": [
"type:drupal-module"
],
"public/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"public/profiles/{$name}": [
"type:drupal-profile"
],
"public/themes/contrib/{$name}": [
"type:drupal-theme"
],
"public/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"drush/Commands/{$name}": [
"type:drupal-drush"
]
},
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/helfi_platform_config": {
"Revoke admin role permissions manually.": "patches/helfi_platform_config_skip_helfi_base_content_update_9011.patch"
}
}
},
"repositories": [
{
"type": "composer",
"url": "https://repository.drupal.hel.ninja"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"scripts": {
"test": [
"@lint-php",
"@test-php"
],
"test-php": "vendor/bin/phpunit -c phpunit.xml.dist",
"lint-php": "vendor/bin/phpcs --standard=Drupal",
"copy-commit-message-script": "make copy-commit-message-script",
"post-install-cmd": [
"@copy-commit-message-script"
],
"post-update-cmd": [
"@copy-commit-message-script"
]
}
}