forked from City-of-Helsinki/drupal-helfi-kymp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
105 lines (105 loc) · 3.11 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
{
"name": "city-of-helsinki/drupal-helfi-platform",
"description": "Urban environment and traffic | City of Helsinki",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/City-of-Helsinki/drupal-helfi-kymp",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6.7",
"druidfi/omen": "^0.2.0",
"drupal/core-composer-scaffold": "^9.1",
"drupal/core-recommended": "^9.1",
"drupal/hdbt": "^1.0",
"drupal/hdbt_admin": "^1.0",
"drupal/helfi_ahjo": "^1.0",
"drupal/helfi_api_base": "^1.0",
"drupal/helfi_azure_fs": "^1.0",
"drupal/helfi_hauki": "^1.0",
"drupal/helfi_media_map": "^1.0",
"drupal/helfi_platform_config": "^1.3",
"drupal/helfi_proxy": "^1.0",
"drupal/helfi_tpr": "^1.2",
"drupal/helfi_tunnistamo": "^1.0",
"drupal/menu_link_attributes": "^1.2",
"drush/drush": "^10.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"drupal/coder": "^8.3",
"drupal/core-dev": "^9.1",
"phpspec/prophecy-phpunit": "^2",
"phpunit/phpunit": "~9.4.0"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"composer-exit-on-patch-failure": true,
"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/{$name}": [
"type:drupal-drush"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://repository.drupal.hel.ninja"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"scripts": {
"copy-commit-message-script": "make copy-commit-message-script",
"post-install-cmd": [
"@copy-commit-message-script"
],
"post-update-cmd": [
"@copy-commit-message-script"
]
}
}