-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
109 lines (109 loc) · 4.24 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
{
"name": "openeuropa/oe_translation",
"description": "OpenEuropa Drupal module template.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"cweagans/composer-patches": "^1.7 || ^2",
"drupal/core": "^10",
"drupal/tmgmt": "^1.14",
"jakeasmith/http_build_url": "^1.0",
"php-http/guzzle7-adapter": "^1.0"
},
"require-dev": {
"composer/installers": "^1.11",
"drupal/address": "^1.11",
"drupal/block_field": "^1.0@RC",
"drupal/config_devel": "^1.2",
"drupal/composite_reference": "^2",
"drupal/core-composer-scaffold": "^10",
"drupal/core-dev": "^10",
"drupal/description_list_field": "^1.0@alpha",
"drupal/entity_version": "^1.0-beta8",
"drupal/inline_entity_form": "^1.0-rc15",
"drupal/link_description": "^1.0",
"drupal/metatag": "^1.16",
"drupal/paragraphs": "^1.13",
"drupal/typed_link": "^2.0",
"drush/drush": "^12",
"openeuropa/code-review": "^2.0",
"openeuropa/epoetry-client": "1.x-dev || 2.x-dev",
"openeuropa/oe_content": "^3.0.0-beta2",
"openeuropa/oe_editorial": "^2.0",
"openeuropa/oe_link_lists": "^1.1",
"openeuropa/oe_multilingual": "^1.17",
"openeuropa/task-runner-drupal-project-symlink": "^1.0-beta6",
"phpspec/prophecy-phpunit": "^2",
"symfony/property-access": "^4 || ^5.4 || ^6",
"symfony/property-info": "^4 || ^5.4 || ^6"
},
"_readme": [
"Requiring symfony property-access and propery-info for the ePoetry mock for the serializer that uses them."
],
"conflict": {
"openeuropa/oe_editorial": "<1.2.0"
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"autoload": {
"psr-4": {
"Drupal\\oe_translation\\": "./src/",
"Symfony\\Component\\PropertyInfo\\": "./vendor/symfony/property-info/",
"Symfony\\Component\\PropertyAccess\\": "./vendor/symfony/property-access/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_translation\\": "./tests/src",
"Drupal\\Tests\\oe_translation_epoetry\\": "./modules/oe_translation_epoetry/tests/src",
"Drupal\\Tests\\oe_translation_corporate_workflow\\": "./modules/oe_translation_corporate_workflow/tests/src",
"Drupal\\Tests\\oe_translation_active_revision\\": "./modules/oe_translation_corporate_workflow/modules/oe_translation_active_revision/tests/src",
"Drupal\\Tests\\oe_translation_active_revision_link_lists\\": "./modules/oe_translation_corporate_workflow/modules/oe_translation_active_revision/modules/oe_translation_active_revision_link_lists/tests/src"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"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"]
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
},
"patches": {
"drupal/address": {
"https://www.drupal.org/project/address/issues/3187662": "https://www.drupal.org/files/issues/2020-12-10/3187662-3.patch"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp": true,
"php-http/discovery": false,
"phpstan/extension-installer": true,
"tbachert/spi": true
},
"discard-changes": true
}
}