-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
112 lines (112 loc) · 3.86 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
{
"name": "openeuropa/oe_media",
"description": "Media features for the OpenEuropa project.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"drupal/core": "^10",
"drupal/embed": "^1.5",
"drupal/entity_browser": "^2.5",
"drupal/file_link": "^2.1",
"drupal/inline_entity_form": "~1.0-rc12",
"drupal/media_avportal": "^1.2"
},
"require-dev": {
"cweagans/composer-patches": "^1.7 | ^2.0",
"composer/installers": "~1.5",
"drupal/ckeditor": "^1.0",
"drupal/composite_reference": "^2.2",
"drupal/config_devel": "^1.9",
"drupal/core-composer-scaffold": "^10",
"drupal/drupal-extension": "^5.0",
"drupal/entity_reference_revisions": "^1.7",
"drupal/json_field": "^1.1",
"drush/drush": "^12.4",
"mikey179/vfsstream": "^1.6",
"nikic/php-parser": "^4.18",
"openeuropa/behat-transformation-context": "^0.2",
"openeuropa/code-review-drupal": "^1.0.0-alpha",
"openeuropa/oe_link_lists": "^0.22",
"openeuropa/oe_oembed": "~0.7.0",
"openeuropa/oe_webtools": "^1.23",
"openeuropa/task-runner-drupal-project-symlink": "^1.0",
"phpspec/prophecy-phpunit": "^2",
"symfony/phpunit-bridge": "^6.4"
},
"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"
},
{
"type": "git",
"url": "https://github.com/openeuropa/DrupalDriver.git"
},
{
"type": "git",
"url": "https://github.com/openeuropa/code-review-drupal.git"
}
],
"autoload": {
"psr-4": {
"Drupal\\oe_media\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_media\\": "./tests/src",
"Drupal\\Tests\\oe_media_embed\\": "./modules/oe_media_embed/tests/src",
"Drupal\\Tests\\oe_media_circabc\\": "./modules/oe_media_circabc/tests/src",
"Drupal\\Tests\\oe_link_lists\\": "./build/modules/contrib/oe_link_lists/tests/src",
"Drupal\\Tests\\oe_link_lists_manual_source\\": "./build/modules/contrib/oe_link_lists/modules/oe_link_lists_manual_source/tests/src",
"Drupal\\FunctionalJavascriptTests\\": "./build/core/tests/Drupal/FunctionalJavascriptTests"
}
},
"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"
]
},
"patches": {
"openeuropa/oe_webtools": {
"latest-master": "https://github.com/openeuropa/oe_webtools/compare/1.35.0...master.diff"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
},
"_readme": [
"Explicit requirement of nikic/php-parser as ^5.0 generates GrumPHP Parser issues."
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp": true,
"phpro/grumphp-shim": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}