-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
143 lines (143 loc) · 4.57 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "my/project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"php": "^5.5.9|>=7.0.8",
"composer/installers": "^1.2.0",
"cweagans/composer-patches": "^1.6.5",
"drupal-composer/drupal-scaffold": "^2.5.4",
"drupal/acquia_connector": "^1.17.0",
"drupal/admin_toolbar": "^2.0.0",
"drupal/allowed_formats": "^1.2.0",
"drupal/backup_migrate": "^4.0.0",
"drupal/components": "^1.1.0",
"drupal/console": "^1.9",
"drupal/core": "^8.8.0",
"drupal/core-dev": "^8.8",
"drupal/crop": "^1.5.0",
"drupal/ctools": "^3.2.0",
"drupal/easy_breadcrumb": "^1.12",
"drupal/embed": "^1.2.0",
"drupal/entity": "^1.0.0-rc3",
"drupal/entity_embed": "^1.0.0",
"drupal/entity_reference_revisions": "^1.7.0",
"drupal/entity_tasks": "^1.0.0-alpha1",
"drupal/entity_usage": "^2.0.0-beta1",
"drupal/field_group": "^3.0.0-rc2",
"drupal/focal_point": "^1.2.0",
"drupal/hsts": "^1.0.0",
"drupal/jsonapi_extras": "^3.13",
"drupal/linkit": "^4.3.0",
"drupal/menu_block": "^1.5",
"drupal/menu_link_attributes": "^1.0.0",
"drupal/openapi": "^2.0@RC",
"drupal/openapi_jsonapi": "^2.0@RC",
"drupal/openapi_ui": "^1.0@RC",
"drupal/openapi_ui_redoc": "^1.0@RC",
"drupal/paragraphs": "^1.10.0",
"drupal/paragraphs_browser": "^1.0.0-beta1",
"drupal/pathauto": "^1.6.0",
"drupal/quicklink": "^1.2.0",
"drupal/recreate_block_content": "^2.0.0",
"drupal/redirect": "^1.4.0",
"drupal/redirect_after_login": "^2.5.0",
"drupal/search_api": "^1.15.0",
"drupal/search_api_best_bets": "^1.1.0",
"drupal/search_api_solr": "^3.7",
"drupal/token": "^1.5.0",
"drupal/twig_field_value": "^1.2.0",
"drupal/twig_tweak": "^2.4.0",
"drupal/twig_xdebug": "^1.1.0",
"drupal/value": "^1.1.0",
"drush/drush": "^10.1",
"grasmash/drupal-security-warning": "^1.0.0",
"oomphinc/composer-installers-extender": "^1.1",
"phpseclib/phpseclib": "^2.0",
"phpspec/prophecy": "^1.9",
"wikimedia/composer-merge-plugin": "^1.4.1"
},
"require-dev": {
},
"config": {
"sort-packages": true,
"discard-changes": true,
"optimize-autoloader": true
},
"conflict": {
"drupal/drupal": "*"
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/entity_tasks": {
"Links are caching": "https://www.drupal.org/files/issues/2019-12-17/3101689-links-are-caching-1.patch"
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"drush/Commands/{$name}": [
"type:drupal-drush"
],
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
]
},
"merge-plugin": {
"include": [
"docroot/modules/custom/*/composer.json"
],
"replace": false,
"ignore-duplicates": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}