forked from apigee/apigee-devportal-kickstart-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.82 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
{
"name": "apigee/apigee_devportal_kickstart",
"description": "A fast demo and starting point for Apigee Developer Portals.",
"type": "drupal-profile",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^3.0",
"drupal/adminimal_admin_toolbar": "^1.9",
"drupal/apigee_api_catalog": "^3",
"drupal/apigee_edge": "^1.18 || ^2.0.0",
"drupal/better_exposed_filters": "^5.0",
"drupal/default_content": "^1.0@alpha",
"drupal/email_registration": "^1.0@RC",
"drupal/fontawesome": "^2.12",
"drupal/paragraphs": "^1.6",
"drupal/pathauto": "^1.6",
"drupal/radix": "^4.11",
"drupal/components": "^2.1"
},
"require-dev": {
"drupal/core-dev": "^9",
"drush/drush": "^10.0",
"mglaman/drupal-check": "^1.3",
"phpmd/phpmd": "^2.8.2",
"phpmetrics/phpmetrics": "^2.5",
"phpstan/phpstan": "^1.5"
},
"conflict": {
"drupal/pathauto": "<1.6",
"drupal/apigee_m10n": "<1.7"
},
"config": {
"sort-packages": true
},
"extra": {
"patches": {
"drupal/core": {
"Fix issue with #summary_details introduced in Drupal 8.6.x": "https://www.drupal.org/files/issues/2018-12-17/core-undefined-index-summary_attributes-2998194-9.patch",
"Fix Validation issue for entity reference field on updating teams #470": "https://www.drupal.org/files/issues/2021-04-23/validate-reference-constraint-3210319-3.patch"
},
"drupal/default_content": {
"Do not import existing entities": "https://www.drupal.org/files/issues/2020-11-06/default_content-existing-entities-2698425-1-x.patch"
}
}
}
}