-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
122 lines (122 loc) · 3.83 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
{
"name": "contentacms/contenta-jsonapi-project",
"description": "Project template for Contenta CMS.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mateu Aguiló Bosch",
"email": "[email protected]"
},
{
"name": "Daniel Wehner",
"email": "[email protected]"
}
],
"repositories": {
"lenient": {
"type": "composer",
"url": "https://packages.drupal.org/lenient"
},
"0": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"drupal/core-composer-scaffold": "^9.3",
"drupal/core-recommended": "^9.3",
"drupal/gin": "^3.0",
"drupal/gin_toolbar": "^1.0@beta",
"drupal/gin_login": "^1.0",
"drupal/core-project-message": "^9.3",
"drupal/pathauto": "^1.8",
"vlucas/phpdotenv": "^5.4",
"cweagans/composer-patches": "^1.7",
"drush/drush": "^11.0",
"drupal/menu_pager": "^3.0",
"drupal/pathologic": "^1.0@alpha",
"drupal/gatsby": "^1.0@RC",
"drupal/jsonapi_views": "^1.0",
"drupal/menu_normalizer": "^2.0",
"drupal/typed_data": "^1.0@beta",
"drupal/views_bulk_edit": "^2.6",
"drupal/backup_migrate": "^5.0",
"drupal/customfilter": "^2.0",
"drupal/markdown": "3.0.x-dev",
"composer/installers": "^2.0",
"webflo/drupal-finder": "^1.2",
"webmozart/path-util": "^2.3",
"drupal/simple_oauth": "5.2",
"league/commonmark": "^1",
"drupal/contentajs": "^2.0",
"drupal/consumer_image_styles": "^4.0",
"drupal/decoupled_router": "^2.0",
"drupal/jsonapi_boost": "^2.0",
"drupal/metatag": "^1.19",
"drupal/openapi_jsonapi": "^3.0",
"drupal/subrequests": "^3.0",
"drupal/views_bulk_operations": "^4.1",
"drupal/warmer": "^2.0",
"drupal/environment_indicator": "^4.0",
"drupal/admin_toolbar": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"load.environment.php"
]
},
"scripts": {
"install:with-mysql": "scripts/install-mysql.sh",
"install:with-sqlite": "scripts/install-sqlite.sh"
},
"extra": {
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"omit-defaults": false
},
"enable-patching": true,
"patches": {
"drupal/jsonapi": {
"Fix menu problems": "https://www.drupal.org/files/issues/2020-05-13/2915792-47.patch",
"Fix menu problems more": "https://www.drupal.org/files/issues/2020-05-19/3066751-32-with_issue_2915792.patch"
}
}
},
"config": {
"preferred-install": {
"*": "auto"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"cweagans/composer-patches": true,
"composer/installers": true
}
}
}