This repository was archived by the owner on Aug 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.84 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.84 KB
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
{
"name": "cnect/newsroom_connector",
"type": "drupal-module",
"description": "Newsroom connector.",
"homepage": "https://git.fpfis.tech.ec.europa.eu/openeuropa/newsroom_connector",
"authors": [
{
"name": "Nikolay Lobachev",
"homepage": "https://www.drupal.org/u/lobsterr",
"role": "Maintainer"
}
],
"support": {
"issues": "https://git.fpfis.tech.ec.europa.eu/openeuropa/newsroom_connector/issues",
"source": "https://git.fpfis.tech.ec.europa.eu/openeuropa/newsroom_connector"
},
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"require": {
"drupal/core": "^9.5 || ^10 || ^11",
"drupal/allowed_formats": "^3.0",
"drupal/entity_data": "^1.0",
"drupal/migrate_plus": "^6.0",
"drupal/migrate_tools": "^6.0",
"drupal/geofield": "^1.6"
},
"require-dev": {
"ec-europa/toolkit": "^10",
"composer/installers": "^2.2",
"drupal/core-composer-scaffold": "^10.2",
"phpspec/prophecy-phpunit": "^2.1",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"behat/mink": "^1.11",
"drupal/core-dev": "^10.2"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": false,
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "web/"
}
},
"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"]
}
},
"scripts": {
"post-install-cmd": [
"./vendor/bin/run drupal:symlink-project"
],
"post-update-cmd": [
"./vendor/bin/run drupal:symlink-project"
]
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"ec-europa/toolkit-composer-plugin": true
}
}
}