-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
104 lines (104 loc) · 3.84 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
{
"name": "openeuropa/oe_paragraphs",
"description": "Drupal module providing a collection of Paragraph types based on ECL components.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"cweagans/composer-patches": "^1.7 || ^2.0",
"drupal/allowed_formats": "^2.0 || ^3.0",
"drupal/core": "^10",
"drupal/paragraphs": "^1.18",
"drupal/typed_link": "^2.0"
},
"require-dev": {
"composer/installers": "^1.5",
"drupal/address": "^1.9",
"drupal/composite_reference": "^2.1",
"drupal/config_devel": "^1.9",
"drupal/core-composer-scaffold": "^10",
"drupal/core-utility": "^10",
"drupal/description_list_field": "^1.0",
"drupal/drupal-extension": "^5.0",
"drupal/entity_browser": "^2.5",
"drupal/inline_entity_form": "^1.0-rc12",
"drupal/json_field": "^1.1",
"drush/drush": "^12",
"nikic/php-parser": "^4",
"openeuropa/behat-transformation-context": "^0.1",
"openeuropa/code-review": "^2.0",
"openeuropa/oe_content": "^3.0.0",
"openeuropa/oe_media": "^1.23.1",
"openeuropa/oe_webtools": "^1.22",
"openeuropa/rdf_skos": "^1.0.0-alpha10",
"openeuropa/task-runner-drupal-project-symlink": "^1.0-beta6",
"phpspec/prophecy-phpunit": "^2",
"symfony/phpunit-bridge": "^6.0"
},
"suggest": {
"openeuropa/oe_media": "Allows usage of paragraphs with different media attached to it."
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"autoload": {
"psr-4": {
"Drupal\\oe_paragraphs\\": "./src/",
"Drupal\\Tests\\oe_content\\": "./build/modules/contrib/oe_content/tests/src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_paragraphs\\": "./tests/",
"Drupal\\Tests\\oe_media\\": "./build/modules/contrib/oe_media/tests/src"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
},
"patches": {
"drupal/paragraphs": {
"Paragraphs widgets validates fields that are not in the current form display @see https://www.drupal.org/project/paragraphs/issues/2890086": "https://www.drupal.org/files/issues/2024-08-08/respect-display-on-validation-2890086-65.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
},
"_readme": [
"Explicit requirement of symfony/phpunit-bridge to replace drupal/core-dev testing classes and traits.",
"Explicit requirement of nikic/php-parser ^4 as later versions are not compatible with grumphp @see https://github.com/phpro/grumphp/issues/1119"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://git.drupalcode.org/project/description_list_field.git"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"config": {
"sort-packages": true,
"discard-changes": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
}
}