-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
136 lines (136 loc) · 3.95 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
{
"name": "drupal/drupal",
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
"type": "project",
"license": "GPL-2.0+",
"require": {
"php": ">=5.5.9",
"drupal/core": "~8.6",
"cweagans/composer-patches": "^1.6",
"composer/installers": "^1.0.24",
"doctrine/annotations": "1.4.*",
"doctrine/dbal": "2.5.4",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "2.5.6",
"drupal/admin_toolbar": "1.24",
"drupal/console": "~1.0",
"drupal/mailsystem": "4.1",
"drupal/mandrill": "1.0",
"drupal/persistent_login": "1.0",
"drupal/pathauto": "1.3",
"drush/drush": "~8.0",
"wikimedia/composer-merge-plugin": "^1.4",
"mandrill/mandrill": "1.0.*",
"drupal/lang_dropdown": "2.0-beta3",
"drupal/google_analytics": "2.3",
"drupal/adminimal_admin_toolbar": "1.8",
"drupal/mail_safety": "1.0",
"drupal/better_exposed_filters": "3.0-alpha4",
"drupal/entity": "1.0.0-beta4",
"drupal/entity_print": "2.1",
"drupal/login_security": "1.5",
"drupal/honeypot": "1.29",
"drupal/redirect": "1.3",
"drupal/metatag": "1.7",
"drupal/schema_metatag": "1.3",
"drupal/backup_migrate": "4.0",
"oomphinc/composer-installers-extender": "^1.1",
"drupal/username_policy": "1.0",
"drupal/google_tag": "1.1"
},
"require-dev": {
"drupal/devel": "^1.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"autoloader-suffix": "Drupal8",
"platform": {
"php": "7.0.30"
}
},
"extra": {
"_readme": [
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
"To change the autoloader you can edit ./autoload.php.",
"This file specifies the packages.drupal.org repository.",
"You can read more about this composer repository at:",
"https://www.drupal.org/node/2718229"
],
"merge-plugin": {
"include": [
"core/composer.json",
"modules/custom/*/composer.json"
],
"recurse": false,
"replace": false,
"merge-extra": false
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"core": [
"type:drupal-core"
],
"modules/contrib/{$name}": [
"type:drupal-module"
],
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
],
"modules/custom/{$name}": [
"type:drupal-custom-module"
],
"themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"libraries/{$name}": [
"type:bower-asset",
"type:npm-asset"
]
},
"patches": {
"drupal/domain": {
"https://github.com/agentrickard/domain/pull/435": "https://patch-diff.githubusercontent.com/raw/agentrickard/domain/pull/435.patch"
},
"drupal/telephone_validation": {
"https://www.drupal.org/node/2933906": "https://www.drupal.org/files/issues/2018-09-17/2933906-6.patch"
},
"drupal/entity_browser": {
"Entity browser modal fixes (@todo create an issue and upload patch)": "patches/entity_browser_modal_fixes.patch"
}
}
},
"autoload": {
"psr-4": {
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
}
},
"scripts": {
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
"post-autoload-dump": [
"Drupal\\Core\\Composer\\Composer::ensureHtaccess"
],
"post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
"post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}