forked from openeuropa/oe_editorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.88 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
{
"name": "openeuropa/oe_editorial",
"description": "OpenEuropa Drupal module for editorial features.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"drupal/core": "^8.9 || ^9.1"
},
"require-dev": {
"composer/installers": "^1.5",
"drupal/core-composer-scaffold": "^8.9 || ^9.1",
"drupal/config_devel": "^1.2",
"drupal/content_lock": "^2.2",
"drupal/drupal-extension": "^4.0",
"drupal/entity_version": "^1.0-beta8",
"drupal/address": "^1.8",
"openeuropa/oe_paragraphs": "^1.10",
"drush/drush": "^10.3",
"ec-europa/oe-poetry-client": "dev-master",
"instaclick/php-webdriver": "^1.4.7",
"nikic/php-parser": "^3.1.5 || ^4",
"openeuropa/behat-transformation-context": "~0.1",
"openeuropa/code-review": "^1.7",
"openeuropa/drupal-core-require-dev": "^8.9 || ^9.1",
"openeuropa/oe_multilingual": "^1.5",
"openeuropa/oe_translation": "dev-master",
"openeuropa/task-runner-drupal-project-symlink": "^1.0",
"phpspec/prophecy-phpunit": "^1 || ^2"
},
"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_editorial\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_editorial\\": "./tests/src",
"Drupal\\Tests\\oe_translation\\": "./build/modules/contrib/oe_translation/tests/src",
"Drupal\\Tests\\oe_translation_poetry\\": "./build/modules/contrib/oe_translation/modules/oe_translation_poetry/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"]
},
"patches": {
"drupal/content_lock": {
"https://www.drupal.org/project/content_lock/issues/2919019": "https://www.drupal.org/files/issues/content_lock-caching-invalidation-2919019-3.patch",
"https://www.drupal.org/project/content_lock/issues/2949198": "https://git.drupalcode.org/project/content_lock/-/merge_requests/3.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
}
},
"config": {
"sort-packages": true
}
}