-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
130 lines (130 loc) · 4.55 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
{
"name": "openeuropa/oe_whitelabel",
"description": "OpenEuropa Whitelabel theme.",
"type": "drupal-theme",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"cweagans/composer-patches": "^1.7",
"drupal/core": "^10",
"drupal/daterange_compact": "^2.0.1",
"drupal/twig_field_value": "^2.0.2",
"openeuropa/composer-artifacts": "^1.0.0-alpha1",
"openeuropa/oe_bootstrap_theme": "^1.17"
},
"require-dev": {
"composer/installers": "^1.11",
"drupal/better_exposed_filters": "^6.0.3",
"drupal/color_scheme_field": "^1.0@alpha",
"drupal/composite_reference": "^2.2",
"drupal/config_devel": "~1.9",
"drupal/core-composer-scaffold": "^10",
"drupal/core-dev": "^10",
"drupal/description_list_field": "^1.0@alpha",
"drupal/entity_reference_revisions": "^1.11",
"drupal/extra_field": "^2.3",
"drupal/facets_form": "^1.0.0-alpha6",
"drupal/field_group": "^3.4",
"drupal/paragraphs": "^1.17",
"drupal/search_api": "^1.29",
"drupal/search_api_autocomplete": "^1.7",
"drupal/typed_link": "^2.0.1",
"drush/drush": "^12",
"mikey179/vfsstream": "^1.6.10",
"nikic/php-parser": "^4",
"openeuropa/code-review": "^2.0.0-alpha6",
"openeuropa/oe_authentication": "^1.11",
"openeuropa/oe_contact_forms": "~1.11",
"openeuropa/oe_content": "^3",
"openeuropa/oe_content_extra": "^1.1.0",
"openeuropa/oe_corporate_blocks": "^4.20",
"openeuropa/oe_link_lists": "^1.0",
"openeuropa/oe_list_pages": "^1.0.0",
"openeuropa/oe_multilingual": "^1.14",
"openeuropa/oe_paragraphs": "^1.20",
"openeuropa/oe_starter_content": "^1.2.0",
"openeuropa/oe_subscriptions": "^1.0@alpha",
"openeuropa/task-runner-drupal-project-symlink": "^1.0-beta6",
"phpspec/prophecy-phpunit": "^2"
},
"conflict": {
"openeuropa/oe_corporate_blocks": "<4.19"
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"autoload": {
"psr-4": {
"Drupal\\oe_whitelabel\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_whitelabel\\": "./tests/src/",
"Drupal\\Tests\\oe_bootstrap_theme\\": "./build/themes/contrib/oe_bootstrap_theme/tests/src/"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patches-ignore": {
"openeuropa/oe_content": {
"drupal/field_group": {
"https://www.drupal.org/project/field_group/issues/2787179": "https://www.drupal.org/files/issues/2023-04-07/2787179-highlight-html5-validation-85.patch"
}
}
},
"artifacts": {
"openeuropa/oe_bootstrap_theme": {
"dist": {
"url": "https://github.com/{name}/releases/download/{pretty-version}/{project-name}-{pretty-version}.zip",
"type": "zip"
}
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
},
"installer-paths": {
"build/core": [
"type:drupal-core"
],
"build/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"build/modules/contrib/{$name}": [
"type:drupal-module"
],
"build/themes/contrib/{$name}": [
"type:drupal-theme"
]
},
"_readme": [
"Explicit requirement of nikic/php-parser ^4 as later versions are not compatible with grumphp @see https://github.com/phpro/grumphp/issues/1119"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"openeuropa/composer-artifacts": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"php-http/discovery": false
}
}
}