forked from farmOS/farmOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.project.json
28 lines (28 loc) · 924 Bytes
/
composer.project.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
{
"require": {
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "9.3.20"
},
"require-dev": {
"brianium/paratest": "^4",
"drupal/core-dev": "9.3.20",
"phpspec/prophecy-phpunit": "^2",
"symfony/finder": "^4.0"
},
"_comments": {
"symfony/finder": "Required to pin v4, otherwise composer-merge-plugin causes problem: package is fixed to v5.3.7 (lock file version) by a partial update",
"phpspec/prophecy-phpunit": "Required to fix ProphecyTrait not found, until Drupal core drops support for PHPUnit 8. See https://www.drupal.org/node/3176567"
},
"conflict": {
"drupal/drupal": "*"
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"enable-patching": true
}
}